| Button() | ใช้สร้าง Object Button |
|---|
method:Button ( Context context )
return type:Button
content:ใช้สร้าง Object Button
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); Button button = new Button ( this ); setContentView( button ); } }