Skip to content Skip to sidebar Skip to footer

Implementing Dark Theme In My App; Different Color Is Showing In Toolbar Of Different Activity

I wanted to implement dark theme in my app; it has a toolbar in mainactivity and action bar in other activity. I implemented dark theme in values/styles.xml as below:

Solution 1:

Use:

<com.google.android.material.appbar.AppBarLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"style="@style/MyAppBar"..>

where:

<stylename="MyAppBar"parent="@style/Widget.Design.AppBarLayout"><itemname="android:background">?attr/colorPrimary</item><itemname="android:elevation">xxdp</item>
    ...
</style>

Post a Comment for "Implementing Dark Theme In My App; Different Color Is Showing In Toolbar Of Different Activity"