nuaaflash / PopupList

The editing menu in Android, like the UIMenuController in iOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PopupList

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

效果图(Screenshot)

ScreenShotScreenShot
ScreenShotScreenShot

使用方式(How do I use PopupList?)

Just need a .javafile and a little code.
只需要一个Java文件和几行代码即可。

    PopupList popupList = new PopupList(context);
    popupList.bind(anchorView, popupMenuItemList, PopupListListener);

例子(Sample):

    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();
        }
    });

配置(Configuration):

You can get more information from the Wiki page.
可以在Wiki页了解更多

About

The editing menu in Android, like the UIMenuController in iOS


Languages

Language:Java 100.0%