| RadioButton() | ใช้สร้าง Object RadioButton |
|---|---|
| toggle() | ใช้เปลี่ยน radio button ให้เห็นแบบ toggle |
method:RadioButton ( Context context )
return type:RadioButton
content:ใช้สร้าง Object RadioButton
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); RadioButton radio_button = new RadioButton ( this ); setContentView( radio_button ); } }
method:toggle ( )
return type:void
content:ใช้เปลี่ยน radio button ให้เห็นแบบ toggle
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); RadioButton radio_button = new RadioButton ( this ); radio_button.toggle ( ); setContentView( radio_button ); } }