Android 控件之单选框(Toast)

Android 控件之单选框(Toast)
单选框RadioButton,几个单选项实在一个GroupButton内的,有过前端开发或者学过简单网页制作的人会比较容易理解
效果如下:
Android 控件之单选框(Toast)_第1张图片
三个按钮只能单选,布局文件代码如下:
 

    

    

    
    
    
一个RadioGroup包裹三个按钮,只有包裹之后才能实现单选,有的开发工具会自动生成按钮 ,但是没有RadioGroup,需要手动添加。
android:orientation="vertical"
RadioGroup的这个属性控制按钮竖向排列
接下来在activity中根据id调用并设置监听事件,注意此时设置监听器不是为按钮设置,而是为RadioGroup设置,相应代码如下:
public class Activity01 extends Activity {
    private RadioGroup radioGroup;
    private RadioButton radioButton1,radioButton2,radioButton3;
    private CheckBox number1,number2,number3;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_activity01);
		
		radioGroup=(RadioGroup)findViewById(R.id.Group1);
		radioButton1=(RadioButton)findViewById(R.id.radioButton1);
		radioButton2=(RadioButton)findViewById(R.id.radioButton2);
		radioButton3=(RadioButton)findViewById(R.id.radioButton3);
		
		number1=(CheckBox)findViewById(R.id.number1);
		number1=(CheckBox)findViewById(R.id.number1);
		number1=(CheckBox)findViewById(R.id.number1);
		
	    
		radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
			
			@Override
			public void onCheckedChanged(RadioGroup arg0, int checkedId) {
				// TODO Auto-generated method stub
				
				if(radioButton1.getId()==checkedId){
					System.out.println("radioButton1");
					Toast.makeText(Activity01.this, "radioButton1", Toast.LENGTH_LONG).show();;
				
				}else if(radioButton2.getId()==checkedId){
					System.out.println("radioButton2");
					Toast.makeText(Activity01.this, "radioButton2", Toast.LENGTH_LONG).show();
				}else if(radioButton3.getId()==checkedId){
					System.out.println("radioButton3");
					Toast.makeText(Activity01.this, "radioButton3", Toast.LENGTH_LONG).show();
				}
				
			}
		});	
	}
在这里注意不是先写OnClickListener然后调用,而是先设置监听事件,然后根据提示完成。
System.out.println  主要是调试使用。
Toast在这里的作用就是选中之后会出现一个小提示。




你可能感兴趣的:(Android开发笔记)