| PopupWindow ( width, height ) | ใช้สร้าง Object PopupWindow โดยมีการกำหนดขนาดความสูงและความกว้างเอาไว้ |
|---|
method:PopupWindow ( int width, int height )
return type:PopupWindow
content:ใช้สร้าง Object PopupWindow โดยมีการกำหนดขนาดความสูงและความกว้างเอาไว้
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); PopupWindow popup_window = new PopupWindow ( 300, 100 ); } }