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.
我很困惑为什么它在最后一行代码中返回一个布尔值。这有什么用,为什么重要?
@Override public boolean onCreateOptionsMenu(Menu menu) { return super.onCreateOptionsMenu(menu); }
来自此方法的文档:
返回 boolean 您必须返回 true 才能显示菜单;如果您返回 false 则不会显示。
据我了解,这是为了确认菜单已正确创建,仅填充了有效元素,因此可以安全使用。