哈囉大家好今天要示範簡單的RadioButton,RadioButton是從一組選項中只能選取一個選項,我們常常會使用RadioGroup來將多個RadioButton組成一組,那我們一樣先上程式碼。
<?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">
<RadioGroup
android:id="@+id/rg_choose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<RadioButton
android:id="@+id/rb_a"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="選項A"
android:textSize="30sp"
/>
<RadioButton
android:id="@+id/rb_b"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="選項B"
android:textSize="30sp"
/>
<RadioButton
android:id="@+id/rb_c"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="選項C"
android:textSize="30sp"
/>
</RadioGroup>
<Button
android:id="@+id/btn_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="送出"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rg_choose" />
<Button
android:id="@+id/btn_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="清除"
app:layout_constraintEnd_toStartOf="@+id/btn_send"
app:layout_constraintHorizontal_bias="0.391"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rg_choose" />
</androidx.constraintlayout.widget.ConstraintLayout>
在佈局方面我使用了三個RadioButton並且將他們包覆在一個RadioGroup裡面,還有兩個按鈕分別是清除和送出按鈕,由於RadioButton無法像前幾天介紹的CheckBox一樣再次點擊同一個選項就能取消到勾選,這時候我使用了一個清除按鈕來將RadioGroup裡面的選項清空,當然各位讀者也可以想想看有甚麼其他的方法來將選項清空,而送出按鈕的功能是將使用者選擇到的選項使用Toast顯示給使用者看。
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
RadioButton rbA,rbB,rbC;
Button btnSend,btnCancel;
RadioGroup radioGroup;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
rbA = findViewById(R.id.rb_a);
rbB = findViewById(R.id.rb_b);
rbC = findViewById(R.id.rb_c);
btnSend = findViewById(R.id.btn_send);
btnCancel = findViewById(R.id.btn_cancel);
radioGroup = findViewById(R.id.rg_choose);
btnSend.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (rbA.isChecked()){
Toast.makeText(MainActivity.this,"選取了:選項A",Toast.LENGTH_SHORT).show();
}
if (rbB.isChecked()){
Toast.makeText(MainActivity.this,"選取了:選項B",Toast.LENGTH_SHORT).show();
}
if (rbC.isChecked()){
Toast.makeText(MainActivity.this,"選取了:選項C",Toast.LENGTH_SHORT).show();
}
if (!rbA.isChecked() && !rbB.isChecked() && !rbC.isChecked() ){
Toast.makeText(MainActivity.this,"請選擇選項",Toast.LENGTH_SHORT).show();
}
}
});
btnCancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
radioGroup.clearCheck();
}
});
}
}
在送出按鈕點擊時我一樣有做一個小小的防呆功能,當程式掃描到沒有任何選項被選取時會彈出一個Toast來提醒使用者要選取選項。
那今天的示範就到這了,謝謝大家耐心地觀看完這一篇文章。