| getDuration() | ใช้คืนค่าระยะเวลาที่ toast ถูกแสดง |
|---|
method:getDuration ( )
return type:int
content:ใช้คืนค่าระยะเวลาที่ 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 ( ); int duration = toast.getDuration ( ); } }