Android中的主题和风格

时间:2011-01-25 11:03:14

标签: android

任何人都可以告诉我如何在android中应用主题和风格。

1 个答案:

答案 0 :(得分:3)

你看过这个教程吗? http://developer.android.com/guide/topics/ui/themes.html

基本上,像这样添加你的风格。

<TextView
    style="@style/CodeFont"
    android:text="@string/hello" />

和你的主题

<application android:theme="@style/CustomTheme">