| getHeight() | ใช้คืนค่า ขนาดความสูง ของ Object PopupWindow |
|---|
method:getHeight ( )
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_height = popup_window.getHeight ( ); } }