为什么没有为您预先提供菜单?

发布于 2024-09-16 04:57:41 字数 45 浏览 7 评论 0原文

为什么 Android 中的菜单不像 Activity 的布局那样自动膨胀?

Why aren't menus inflated automatically for you in Android, the way an Activity's layout is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

很酷又爱笑 2024-09-23 04:57:41

它们是,只需像这样覆盖:

 @Override
    public boolean onCreateOptionsMenu(Menu menu) {     
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.YOUR_MENU_LAYOUT, menu);
        return true;    
    }

编辑,这是一个示例 xml,它们位于 /res/menu

<menu>
   <item android:id="@+id/menu_sample"
          android:title="Sample text"
          android:icon="@drawable/ic_menu_sample"
     />

</menu>

They are, just override like this:

 @Override
    public boolean onCreateOptionsMenu(Menu menu) {     
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.YOUR_MENU_LAYOUT, menu);
        return true;    
    }

EDIT, heres a sample xml, they go in /res/menu

<menu>
   <item android:id="@+id/menu_sample"
          android:title="Sample text"
          android:icon="@drawable/ic_menu_sample"
     />

</menu>
橘虞初梦 2024-09-23 04:57:41

确实使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文