Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
onCreateOptionsMenu()活动栏是在onStart()活动之前还是之后调用?
onCreateOptionsMenu()
onStart()
首先调用 onStart()。(我尝试将日志消息放入方法中)。
我发现这个顺序是正确的
onCreate() - onStart() - onResume()- onCreateOptionsMenu()
这只调用一次,第一次显示选项菜单。要在每次显示菜单时更新菜单,请参阅 onPrepareOptionsMenu(Menu)。
这是在 Android 文档中编写的。