有没有办法将主题应用于导航视图的不同项目?

时间:2016-10-02 09:42:38

标签: android android-layout android-navigationview

我使用下面的代码

在导航视图上应用样式
app:theme="@style/NavigationItemTheme" //NavigationItemTheme is my style.

它将相同的主题应用于所有导航项。我想将不同的主题应用于不同的项目。如何实现请帮助。

是否可以将不同的主题应用于导航视图中的不同项目?。

1 个答案:

答案 0 :(得分:0)

您可以将儿童添加到导航视图并为儿童添加样式

 <android.support.design.widget.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="end"
    android:background="@color/white"
    android:fitsSystemWindows="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_horizontal"
        android:orientation="vertical"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_horizontal"
        android:orientation="vertical"/>
 </android.support.design.widget.NavigationView>