Implement Change Black/light Theme Feature In Android App
Solution 1:
Make sure you call setTheme()
in onCreate()
BEFORE calling setContentView()
. Then if you want to dynamically change the theme again later, you should simply restart your activity.
Solution 2:
If you are adding a theme to the entire program than you could start by doing:
In your manifest you add to your application tag that you are using a theme.
<applicationandroid:theme="@style/mythemename">
Then look at Theme XML to make sure that you have what you need declared in the appropriate places.
If it is just for a particular action you could add the activity tag
<activityandroid:theme="@android:style/Theme.propertyname">
You can also, if you want your theme to just change the background color, follow the same pattern with either the activity or application tag (what ever one you are using) and set the item name "colorbackground" to what you want.
You can also use Theme XML and remake what you want in your current theme and call that your custom theme using the method above.
I hope this helps and if not please let me know so I might be able to help better in the future.
Solution 3:
Another way would be to have a kind of splash screen which will check for a preference variable for example and then decide whether to use the light or the dark theme. This way you could also use XML layouts.
EDIT: Yet another way is to have the all the layout defining stuff in the onCreate() method and then just trigger the onStart() method when ready.
Post a Comment for "Implement Change Black/light Theme Feature In Android App"