Changing the text appearance in styles and themes for an Android app
问题 I am writing an android app and I am wanting to alter the theme of my app. I have managed to alter the background colour of the app by using a theme, but I am struggling to change the default text appearance. This is my styles.xml resource file. <resources> <style name="QTheme" parent="android:Theme.Light"> <item name="android:windowBackground">@color/q_green</item> <item name="android:colorBackground">@color/q_green</item> <item name="android:textAppearance">@style/QText</item> </style>