| getTextSize() | ใช้คืนค่า ขนาดความกว้าง ของ Object TextView |
|---|
method:getTextSize ( )
return type:float
content:ใช้คืนค่า ขนาดความกว้าง ของ 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" ); float size_text = text.getTextSize ( ); setContentView ( text ); } }