method:setTypeface ( Typeface tf )
return type:void
content:ใช้กำหนด Object Typeface ให้กับ Object TextView คือเป็นการกำหนด ลักษณะตัวอักษร
example:public class AndroidBamboo extends Activity
{
public void onCreate( Bundle savedInstanceState )
{
super.onCreate ( savedInstanceState );
TextView text = new TextView ( this );
text.setText ( "WelCome To BambooLabCode.com" );
Typeface face = Typeface.createFromAsset ( this.getAssets( ), "fonts/HandmadeTypewriter.ttf" );
text.setTypeface ( face );
setContentView ( text );
}
}