| show() | ใช้กำหนดให้แสดง toast |
|---|
method:show ( )
return type:void
content:ใช้กำหนดให้แสดง toast
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); Toast toast = Toast.makeText ( this, "Welcome To BambooLabCode.Com", Toast.LENGTH_LONG ); TextView text = new TextView ( this ); text.setText ( "Welcome To BambooLabCode.Com" ); toast.setView ( text ); toast.show ( ); } }