There are different fonts available to use programmatically and also using the device setting, Generally programmers do use fonts in a way that keeping the font file in assets folder and then passing the font as resource to textviews.
Questions tagged [android-fonts]
362 questions
-4
votes
1 answer
How to apply custom font to my ListView items?
This my main java code:
public class MainActivity extends ActionBarActivity {
String[] mobileArray = {"Android","IPhone","WindowsMobile","Blackberry","WebOS","Ubuntu"};
@Override
protected void onCreate(Bundle savedInstanceState) {
…