| getHorizontalMargin() | ใช้คืนค่า margin horizontal ของ toast |
|---|
method:getHorizontalMargin ( )
return type:float
content:ใช้คืนค่า margin horizontal ของ 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_horizontal = toast.getHorizontalMargin ( ); } }