SHOONYA
SHOONYA

Reputation: 352

How to change a color value in android via java code

I want to change the hex color value of a color variable and colorAccent color defined in the colors.xml file by MainActivity.java code.

What code should I write in the java file inside a method or a switch or if/else statement to change it?

enter image description here

Upvotes: 1

Views: 1959

Answers (2)

Black mamba
Black mamba

Reputation: 472

Unfortunately all color values (and other resources) inside the resources directory are hardcoded as static final ints. This means there is no way to change the values at runtime. You can however use one of the previously suggested solutions or have a look at this excellent

here's exaplained

Upvotes: 0

Kamil Vilím
Kamil Vilím

Reputation: 86

You should use themes and styles for changing color values. See: Styles and Themes

Basically, you should declare the color in styles.xml:

<style name="GreenText" parent="TextAppearance.AppCompat">
    <item name="android:textColor">#00FF00</item>
</style>

<style name="RedText" parent="TextAppearance.AppCompat">
    <item name="android:textColor">#ff0000</item>
</style>

Then declare which theme to use in onCreate (before setContentView()):

 switch (theme) {
     case 1:
         setTheme(R.style.Green);
         break;
     case 2:
         setTheme(R.style.Red);
         break;
 }

Edit: You can change the theme during onCreate() only - If you want to change it afterwards, during runtime, you will have to recreate your activity by calling recreate()

Upvotes: 4

Related Questions