Answers for "android studio app dark mode disable"

2

How to turn off darkmode for my app in android studio

in the night\themes.xml file paste the following line under the <!-- Base application theme. -->
<item name="android:forceDarkAllowed" tools:ignore="NewApi">false</item>
Posted by: Guest on September-05-2021
0

dark mode app android studio

YOUR ACTIVITY SHOULD extend AppCompatActivity

AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); //night
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);  //day
Posted by: Guest on December-28-2021

Code answers related to "android studio app dark mode disable"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language