我使用下面的代码
在导航视图上应用样式app:theme="@style/NavigationItemTheme" //NavigationItemTheme is my style.
它将相同的主题应用于所有导航项。我想将不同的主题应用于不同的项目。如何实现请帮助。
是否可以将不同的主题应用于导航视图中的不同项目?。
答案 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>