How do you change text/font settings in an Android TextView?
TextView
For example, how do you make the text bold
editText.setTypeface(Typeface.createFromAsset(getAssets(), ttfFilePath)); etitText.setTypeface(et.getTypeface(), Typeface.BOLD);
will set both typface as well as style to Bold.