为什么没有为您预先提供菜单?
为什么 Android 中的菜单不像 Activity 的布局那样自动膨胀?
Why aren't menus inflated automatically for you in Android, the way an Activity's layout is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它们是,只需像这样覆盖:
编辑,这是一个示例 xml,它们位于
/res/menu
They are, just override like this:
EDIT, heres a sample xml, they go in
/res/menu
您确实使用
setContentView(R.layout.whatever)
显式地膨胀了您的活动布局。它的名称中没有 inflate,但这就是它的作用(以及其他一些事情)。You do explicitly inflate your activity layout with
setContentView(R.layout.whatever)
. It doesn't have inflate in the name, but that (among a few other things) is what it does.