DynamicMind
DynamicMind

Reputation: 4258

Theme and Style in Android

Can any one tell me how to apply theme and style in android.

Upvotes: 0

Views: 1684

Answers (1)

Nanne
Nanne

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

Related Questions