creating menu in Android -


i creating android application involves menu.can provide me sample code code of creating menu. in advance

tushar

http://developer.android.com/guide/topics/ui/menus.html

for pleasure, some code:

@override public void oncreatecontextmenu(contextmenu menu, view v,                             contextmenuinfo menuinfo) { super.oncreatecontextmenu(menu, v, menuinfo); menuinflater inflater = getmenuinflater(); inflater.inflate(r.menu.context_menu, menu); } 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -