| setMaxWidth() | ใช้กำหนด ขนาดความกว้างสูงสุด ของ Object TextView |
|---|
method:setMaxWidth ( int maxpixels )
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.setMaxWidth ( 350 ); setContentView ( text ); } }