Technical Articles => Mobile =>  Android

Add ContextMenu to a customized View in Android

Source : sonic0002    Date : 2012-11-04 07:10:40  

In Android, we may sometimes need to add ContextMenu to a View, it's not so easy to add ContextMenu to a customized View. Here we explain how to add ContextMenu to a customized View.

First, we may need to create View.OnCreateContextMenuListener so that the customized view can register for it.

Here is the class definition:

public class GraphView extends View {

    private View.OnCreateContextMenuListener vC = new View.OnCreateContextMenuListener() {
        @Override
        public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
            menu.add(Menu.NONE,R.id.graph_view_refresh,Menu.NONE,"Refresh");
            menu.add(Menu.NONE,R.id.save,Menu.NONE,"Save");
        }
    };

    public GraphView(Context context,AttributeSet attrs) {
        super(context,attrs);

        this.setOnCreateContextMenuListener(vC);
    }

}


That's all. Then when you add the View into your Activity. To show the ContextMenu, you only need to call showContextMenu(); then the ContextMenu will show up.

Also, in the Activity class, you may need to listen to the ContextMenu item selection event. In the Activity class, you only need to override the below method :

    @Override
    public boolean onContextItemSelected(MenuItem item) {
        AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();  
        switch (item.getItemId()) {
            case R.id.graph_view_refresh:
                
                return true;
            case R.id.save:
                if(currentView!=null){
                    currentView.save();
                }
                return true;
            default:
                return super.onContextItemSelected(item);
        }
    }

Hope this will help those who are struggling with making ContextMenu work in the customized view.

Save as PDF Mark as read Mark as important
By clicking the "Mark as read" button, this article will be marked as read. It will be removed from the homepage's latest news and the article list on the "Technical article" page in following visits and it will be put to your read list which you can find in "Amin->Article read list". There you can unmark the read articles.
By clicking the "Mark as important" button, this article will be put to your important article list which you can find in "Amin->Article important list". Later when you want reread this article, it's easier for you to find it by checking the "Article important list".

Tags:Android, ContextMenu,Customized view   Read(3026) Comment(0)

Share on Facebook  Share on Twitter  Share on Google+  Share on Weibo  Share on Digg  Share on Tumblr    Delicious 

 Previous : Behind Start Screen of Windows Phone 8
 Next : Click and Drag on xkcd

  ::Related Articles

  ::Comment List

No comment for this article.

  ::Comment

Nickname  
Email 
Comment

:: Users edited this page

No users edited this page yet.

:: Recent articles

:: Most read

:: Most commented

:: Find us

Back to top