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:
Make sure that the activities extends AppCompatActivity.
Your theme must use Theme.AppCompat.DayNight therefore you should set your main theme or AppTheme to DayNight:
<stylename="AppTheme"parent="Theme.AppCompat.DayNight">
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"