| getVerticalMargin() | ใช้คืนค่า margin vertical ของ toast |
|---|
method:getVerticalMargin ( )
return type:float
content:ใช้คืนค่า margin vertical ของ toast
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); Toast toast = new Toast ( this ); toast.makeText ( this, "Welcome To BambooLabCode.com", Toast.LENGTH_LONG ).show ( ); float margin_vertical = toast.getVerticalMargin ( ); } }