任何人都可以告诉我如何在android中应用主题和风格。
答案 0 :(得分:3)
你看过这个教程吗? http://developer.android.com/guide/topics/ui/themes.html
基本上,像这样添加你的风格。
<TextView
style="@style/CodeFont"
android:text="@string/hello" />
和你的主题
<application android:theme="@style/CustomTheme">