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