| update ( width, height ) | ใช้เปลี่ยนแปลง ขนาดความกว้างและความสูง ของ Object PopupWindow |
|---|
method:update ( int width, int height )
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.update ( 500, 300 ); } }