I have an android app on which, when the user taps a TextView, I would like to apply a defined style.
I thought to find a textview.setStyle() but it doesn't exists. I tried
textview.setTextAppearance();
but it does not work.
|
|
I did this by creating a new XML file called "style.xml" as follows:
I also have an entries in my "strings.xml" file like this:
Then, in my code I created a ClickListener to trap the tap event on that TextView:
To change it back, you would use this:
|
|||||
|
|
Like Jonathan suggested, using
|
|||||||||||||||||
|
You an set it from code. Typeface |
|||
|
|
|
See doco for setText() in TextView http://developer.android.com/reference/android/widget/TextView.html
|
|||
|
|