Android动态增添menu菜单
Android动态添加menu菜单原文:http://blog.csdn.net/hongchangfirst/article/details/7982597作者:hongcha
Android动态添加menu菜单
原文:http://blog.csdn.net/hongchangfirst/article/details/7982597
作者:hongchangfirst
从menu按键开始,涉及以下3个方法:
1、onCreateOptionsMenu(Menu menu)
2、onPrepareOptionsMenu(Menu menu)
3、onOptionsItemSelected(MenuItem item)
方法名触发时间onCreateOptionsMenu进入Launcher后第一次点MENU按钮时触发onPrepareOptionsMenu有两种情况:1、进入Launcher后第一次点MENU按钮触发onCreateOptionsMenu后调用;2、经过第一步,以后每次点MENU按钮时都会触发onOptionsItemSelected选择MENU里面的任意内容后触发