使用include语句重用menu.xml

时间:2016-10-13 16:59:47

标签: android menu

我可以使用include语句在另一个活动中创建menu.xml文件吗? 我在第二个活动xml文件中尝试了这行代码。 它崩溃了应用程序。我的语法是否正确?

<include layout="@menu/menu_main"/>

所以每次需要菜单时都需要充气吗?

2 个答案:

答案 0 :(得分:1)

我已尝试使用各种包含语法语句根据这篇文章你不能使用include语句所以是的,你需要在每次需要时给菜单充气。 HERE

答案 1 :(得分:0)

是的,你可以这样做。例如,当我需要在不同的活动中复制导航抽屉时,这就是我所做的:

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- The main content view -->


    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">


    </FrameLayout>

    <!-- The navigation drawer -->

    <include layout="@layout/nav_drawer"/>


</android.support.v4.widget.DrawerLayout>