2swan

Radio Button (옵션 선택 버튼) 본문

Programming/Android Function

Radio Button (옵션 선택 버튼)

2swan 2023. 8. 5. 14:57

main.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=".MainActivity4">

    <RadioGroup
        android:id="@+id/rg_gender"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="100dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <RadioButton
            android:id="@+id/rb_man"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="남자" />

        <RadioButton
            android:id="@+id/rb_woman"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="여자" />
    </RadioGroup>

    <Button
        android:id="@+id/btn_result"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="160dp"
        android:layout_marginTop="32dp"
        android:layout_marginEnd="160dp"
        android:text="결과버튼"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/rg_gender" />
</androidx.constraintlayout.widget.ConstraintLayout>

 

main.activity

public class MainActivity4 extends AppCompatActivity {

        private RadioGroup rg_gender;
        private RadioButton rb_man, rb_woman;
        private  Button btn_result;
        private  String str_result;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main4);

        rg_gender = findViewById(R.id.rg_gender);       // 라디오 버튼들을 담고있는 그룹
        rb_man  = findViewById(R.id.rb_man);        // 라디오 버튼
        rb_woman = findViewById(R.id.rb_woman);     //라디오 버튼
        btn_result = findViewById(R.id.btn_result);     //결과 값을 출력하라는 신호를 보낼 버튼

        rg_gender.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { //라디오 버튼들의 상태 값의 변경됨을 감지.
            @Override
            public void onCheckedChanged(RadioGroup radioGroup, int i) {
                if( i == R.id.rb_man){
                    Toast.makeText(MainActivity4.this, "남자 라디오 버튼", Toast.LENGTH_SHORT).show();
                    str_result = rb_man.getText().toString();   //라디오 버튼의 text값을 String에 담아줌.
                }else if (i == R.id.rb_woman){
                    Toast.makeText(MainActivity4.this, "여자 라디오 버튼", Toast.LENGTH_SHORT).show();
                    str_result = rb_woman.getText().toString(); //라디오 버튼의 text값을 String에 담아줌.
                }
            }
        });

        btn_result.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if(str_result != null){     //str result가 빈 값이 아니라면..
                    Toast.makeText(MainActivity4.this, str_result, Toast.LENGTH_SHORT).show();
                }else {         // str result가 빈 값일 경우
                    Toast.makeText(MainActivity4.this, "라디오 버튼을 선택해주세요",Toast.LENGTH_SHORT).show();
                }
            }
        });


    }
}

결과 값

'Programming > Android Function' 카테고리의 다른 글

Fragment (액티비티 조각 모음)  (0) 2023.08.05
SharedPreferences (임시저장)  (0) 2023.08.05
Check box (옵션 선택 버튼)  (0) 2023.08.05
Spinner 드롭다운  (0) 2023.08.05
액티비티 생명주기(Life Cycle)  (0) 2023.08.05