Android 单选按钮和复选框 | 学习笔记
程序员文章站
2022-05-09 10:56:26
...
稍微有点难,不太好记。
一、单选按钮
- RadioButton(单选按钮)在Android开发中应用的非常广泛,是一种单个原型单选框双状态的按钮,可以选择或不选择。
- 选中事件:
为单选按钮组 RadioGroup 添加 ObCheckedChangedListener 事件监听
RadioGroup sex=(RadioGroup)findViewById(R.id.radioGroup);
sex.setOnCheckedChangeListener(new OnCheckedChangeListener{
@Overrid
public void onCheckedChanged(RadioGroupradioGroup,int checkedId){
//根据checkedId获取到单选按钮组里面的具体单选按钮
RadioButton r=(RadioButton)findViewById(checkedId);
//获取选中的单选按钮的值
r.getText();
}
});
步骤
1.不能直接加入radiobutton,否则选中后就无法取消选择。
需要先加入radiogroup,然后将radiobutton加入radiogroup中。
进行前端的基本设置
然后进入后端
因为radiogroup没有id,因此需要手动给它添加id
二、复选框
单选按钮是问卷星中的单选
复选框就是问卷星中的多选
初始化——
实例演示
XML——
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/up1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.349" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/up1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.743" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hobby"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sex"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.183" />
<RadioGroup
android:id="@+id/radiogroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.46"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25">
<RadioButton
android:checked="true"
android:id="@+id/radioButton5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/man" />
<RadioButton
android:id="@+id/radioButton6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/woman" />
</RadioGroup>
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/shufa"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.488"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.546" />
<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/huihua"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.488"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.592" />
<CheckBox
android:id="@+id/checkBox3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sheying"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.488"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.638" />
<CheckBox
android:id="@+id/checkBox4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/weiqi"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.488"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.683" />
</androidx.constraintlayout.widget.ConstraintLayout>
JAVA——
package com.example.myapplication;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
RadioGroup radioGroup;
Button button, button2;
CheckBox checkBox1, checkBox2, checkBox3, checkBox4;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//调用引用函数
initView();
//写入button的单击事件
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String str="";
//radiogroup中又两个radiobutton,用for循环实现。i小于radiobutton个数
for(int i=0;i<radioGroup.getChildCount();i++){
//判断取出的radiobutton(子元素)是否处于选中状态
RadioButton radioButton= (RadioButton) radioGroup.getChildAt(i);//光标放在getChildAt处,按alt+enter选择第一个进行强制类型转换
if(radioButton.isChecked()){//如果处于选中状态,需要显示出选中的那一项
str=radioButton.getText().toString();
break;//如果选择完成了,就不用再检测了,直接break跳出for循环
}
}
//将刚刚获取的字符串显示出来
Toast.makeText(MainActivity.this,str,Toast.LENGTH_SHORT).show();
}
});
button2.setOnClickListener(new View.OnClickListener() {
String str="";
@Override
public void onClick(View view) {
CheckBox[]checkBoxes=new CheckBox[]{checkBox1,checkBox2,checkBox3,checkBox4};
for(int i=0;i<checkBoxes.length;i++){
if(checkBoxes[i].isChecked()){
//选项有多项,需要用+=,不能用=
str+=checkBoxes[i].getText().toString()+"、";
}
}
Toast.makeText(MainActivity.this,str,Toast.LENGTH_SHORT).show();
str="";
}
});
}
//引用较多,写成函数
private void initView(){
radioGroup=findViewById(R.id.radiogroup1);
button=findViewById(R.id.button);
checkBox1=findViewById(R.id.checkBox);
checkBox2=findViewById(R.id.checkBox2);
checkBox3=findViewById(R.id.checkBox3);
checkBox4=findViewById(R.id.checkBox4);
button2=findViewById(R.id.button2);
}
}
上一篇: 深度学习之感知机——学习总结