| setWidth() | ใช้กำหนด ขนาดความกว้าง ให้กับ Object TextView |
|---|
method:setWidth ( int pixels )
return type:void
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" ); text.setWidth ( 200 ); setContentView ( text ); } }