| setMinWidth() | ใช้กำหนด ขนาดความกว้างต่ำสุด ( อย่างน้อย ) ให้กับ Object TextView |
|---|
method:setMinWidth ( int minpixels )
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.setMinWidth ( 180 ); setContentView ( text ); } }