styles - Changing theme of entire Android application using RadioButtons -
hello have 4 custom defined styles in styles.xml , trying use radiogroup in order select overall style of entire application. <style name="bluetheme" parent="android:theme.light.notitlebar.fullscreen"> <item name="android:windowbackground">@color/blue_background</item> <item name="android:textcolorprimary">@color/blue_text</item> </style> <style name="redtheme" parent="android:theme.light.notitlebar.fullscreen"> <item name="android:windowbackground">@color/red_background</item> <item name="android:textcolorprimary">@color/red_text</item> </style> <style name="greentheme" parent="android:theme.light.notitlebar.fullscreen"> <item name="android:windowbackground">@color/green_background</item> <item name="android:textcolorprimary">@color/green_text...