Android控件RadioButton的使用方法

本文实例为大家分享了Android控件RadioButton的使用代码,供大家参考,具体内容如下

内容

Android控件RadioButton的使用方法_第1张图片



    
        
        
    
    
        
        
    

//selector_radiobutton.xml



     //单选被选中的样式
        
            
            
        
    
     //单选没被选中的样式
        
            
            
        
    
public class RadioActivity extends AppCompatActivity {
 
    private RadioGroup rg_1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_radio);
        rg_1 = findViewById(R.id.rg_1);
        rg_1.setOnCheckedChangeListener((group, checkedId) -> {//设置组中单选按钮选中事件
            RadioButton radioButton = findViewById(checkedId);//获取被选中的id
            Toast.makeText(RadioActivity.this,radioButton.getText(),Toast.LENGTH_SHORT)
                    .show();//吐司一下被选中的文本值
        });
    }
}

运行效果

Android控件RadioButton的使用方法_第2张图片

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(Android控件RadioButton的使用方法)