PopupList Save

The edit menu in Android, like the UIMenuController in iOS

Project README

PopupList

It can show a edit menu when you press a View by a long-press gesture.
This utility class can bind a edit menu for ListView, GridView, or other View easily.
Welcome star, fork

Screenshots

ScreenShotScreenShot
ScreenShotScreenShot

How do I use PopupList?

Just need a .java file and a little code.

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

Customization

You can get more information from the Wiki page.

Open Source Agenda is not affiliated with "PopupList" Project. README Source: shangmingchao/PopupList
Stars
305
Open Issues
1
Last Commit
5 years ago

Open Source Agenda Badge

Open Source Agenda Rating