It can pop a horizontal popup menu when you press a View by a long-press gesture. This utility class can bind a horizontal popup-menu for ListView, GridView, or other View easily.
长按ListView, GridView 或普通View, 弹出横向气泡式菜单。 只需要一个Java文件和几行代码, 该工具类可以很方便的为ListView, GridView, 甚至普通View绑定长按弹出横向气泡式菜单。
Welcome star, fork 欢迎右上角star,fork
Just need a .java
file and a little code.
只需要一个Java文件和几行代码即可。
PopupList popupList = new PopupList(context);
popupList.bind(anchorView, popupMenuItemList, PopupListListener);
PopupList popupList = new PopupList(this);
popupList.bind(lv_main, popupMenuItemList, new PopupList.PopupListListener() {
@Override
public boolean showPopupList(View adapterView, View contextView, int contextPosition) {
return true;
}
@Override
public void onPopupListClick(View contextView, int contextPosition, int position) {
Toast.makeText(MainActivity.this, contextPosition + "," + position, Toast.LENGTH_SHORT).show();
}
});
You can get more information from the Wiki page.
可以在Wiki页了解更多