How can i change the textcolor of all TextView
by changing the textcolor of theme (which is mentioned in style) programmatically??
Example Suppose I want to change the setting in my android application
I have a spinner , and I fill it with different color name. Then how can i change the textcolor of ALL textviews by selected item of spinner.
my default theme is:
<style name="styleN" parent="android:Widget.Holo.Light.TextView">
<item name="android:textColor">#3DAAB9</item>
<item name="android:textSize">20dp</item>
<item name="android:textStyle">bold</item>
</style>
Can someone help me with this?