How do you change text/font settings in an Android TextView?
TextView
For example, how do you make the text bold
The best way to go is:
TextView tv = findViewById(R.id.textView); tv.setTypeface(Typeface.DEFAULT_BOLD);