| setWidth() | ใช้กำหนดค่า ขนาดความกว้าง ให้กับ Object PopupWindow |
|---|
method:setWidth ( int width )
return type:void
content:ใช้กำหนดค่า ขนาดความกว้าง ให้กับ Object PopupWindow
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); PopupWindow popup_window = new PopupWindow ( this ); popup_window.setWidth ( 500 ); } }