Reputation: 4258
Can any one tell me how to apply theme and style in android.
Upvotes: 0
Views: 1684
Reputation: 64429
Did you look at the tutorial? http://developer.android.com/guide/topics/ui/themes.html
Basically, add your styles like this.
<TextView
style="@style/CodeFont"
android:text="@string/hello" />
and your themes like this
<application android:theme="@style/CustomTheme">
Upvotes: 3