Reputation: 7517
Is there a way to replicate the color changing ability provided by QKSMS . It allows a user to select a color and then changes the app color and everything to that color.This is all done dynamically the moment the user chooses a specific color.
Upvotes: 1
Views: 3490
Reputation: 6707
You can try this cool online tool: http://android-holo-colors.com
This enables you to create many themes for app widgets with your preferred color. You can then change your app theme by saving values for your theme in SharesPreferences or something similar and apply them in onCreate of each activity you have in your app. You can also create the themes easily in styles.xml. For each view, it has its own style with its own attributes so you will need to learn how to edit the theme of each view you want by searching...
Hope that helps.
Some Examples:
ActionBar: https://developer.android.com/training/basics/actionbar/styling.html
Buttons: https://www.androidcookbook.com/Recipe.seam?recipeId=3307
SeekBar: Android - styling seek bar
Switch: How can I style an Android Switch?
And a lot more... You will have to search for what you want.
Upvotes: 1