1.单选按钮
单选按钮实例可参考如下内容(自己做练习时候写的)
在写之前我要告诉自己 android:orientation="vertical
这部分是调整布局方向为垂直!!!(总是记混水平和垂直)
单选按钮以及复选框其实就控件而言,没什么内容,通过design页面直接添加就好,把想要的文本内容text改一下即可。其中我认为仅仅有两点需要注意 `android:checked="true"`这部分是选择单选按钮以及复选框默认选择的。2.单选按钮(RadioButton)是在RadioGroup下存在的。在java后台中运用toast方法进行选择按钮文本提示时,` button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String str="";
for (int i=0;i<radioGroup.getChildCount();i++){
RadioButton radioButton= (RadioButton) radioGroup.getChildAt(i);//
if (radioButton.isChecked()){
str=radioButton.getText().toString();