Skip to content Skip to sidebar Skip to footer

How To Make Dark Mode In Every Activity

When I click night mode button it only apply in settings activity but other activities are not night mode. This is xml

Solution 1:

Try this:

  1. Make sure that the activities extends AppCompatActivity.

  2. Your theme must use Theme.AppCompat.DayNight therefore you should set your main theme or AppTheme to DayNight:

    <stylename="AppTheme"parent="Theme.AppCompat.DayNight">
  3. Set the theme of your Activities in your AndroidManifest to:

    android:theme="@style/AppTheme"

or any theme that uses Theme.AppCompat.DayNight

Post a Comment for "How To Make Dark Mode In Every Activity"