Theme and Style in Android -


can 1 tell me how apply theme , style in android.

did @ tutorial? http://developer.android.com/guide/topics/ui/themes.html

basically, add styles this.

<textview     style="@style/codefont"     android:text="@string/hello" /> 

and themes this

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

Comments