| getTypeface() | ใช้คืนค่า Object Typeface ของ Object TextView |
|---|
method:getTypeface ( )
return type:Typeface
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 type_face = text.getTypeface ( ); setContentView ( text ); } }