我想为Android制作选项菜单,我访问了这个网站.在他们的脚本中,我发现onPrepareOptionsMenu,我尝试使用AndroID 2.3.3编译器编译和运行,有和没有onPrepareOptionsMenu,两者都有效,但我没有看到任何区别.
public boolean onCreateOptionsMenu(Menu menu){//code here}public boolean onoptionsItemSelected(MenuItem item){//code here}public boolean onPrepareOptionsMenu(Menu menu){//code here}
什么是实际onPrepareOptionsMenu方法呢?这种方法很重要吗?我可以删除方法吗?
加成
哦,我也听说过AndroID 3.0中的Action bar,它说Action bar是制作Option Menu的另一种方式,它使用onPrepareOptionsMenu.那正确吗?
谢谢…
解决方法:
看看API:
总结Prepare the Screen’s standard options menu to be displayed. This is called right before the menu is shown, every time it is shown. You can use this method to efficIEntly enable/disable items or otherwise dynamically modify the contents.
以上是内存溢出为你收集整理的android – onPrepareOptionsMenu有什么作用?全部内容,希望文章能够帮你解决android – onPrepareOptionsMenu有什么作用?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)