I have a list adapter and im using holder.text.setTypeface(TYPEFACE) to set the type face and I have a string of names that im using assign each ListView button its text. But im wondering how to set just one individual list item a custom font. Basically say I have the 3 ListAdapter buttons, Button 1, Button 2, and Button 3. I want Button 2 to be a custom font while Button 1 and Button 3 Stay regular. How can this be done?
|
| ||||
feedback
|
|
Create class that extends ArrayAdapter and set the font in the getView procedure. | |||||
feedback
|
|
There are a couple ways to do this my favorite two are to set it in the XML layout. This will work if the same custom font is desired on every "Button2" and if the
The second way to do this is to customize a ListAdapter with a Simply override
| ||||
|
feedback
|