-1

I am apply style on navigation view using below code

app:theme="@style/NavigationItemTheme" //NavigationItemTheme is my style.

it apply same theme to all navigation items. I want to apply different theme to different items. How will achieve please help.

Is it possible to apply different theme to different items in navigation view?.

Prathap Badavath
  • 1,621
  • 2
  • 20
  • 24

1 Answers1

0

you can add children to your navigation view and add style to children

 <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>
masoud vali
  • 1,528
  • 2
  • 18
  • 29