상세 컨텐츠

본문 제목

[안드로이드] 라디오버튼 예제 RadioGroup RadioButton setOnCheckedChangeListener

안드로이드

by aries574 2020. 6. 7. 20:06

본문


이번 시간에는 라디오버튼에 대해 알아보겠습니다. 

데이터를 입력하는 부분에서 콤보박스처럼 흔하게 쓰이는게 바로 라디오 버튼입니다. 

다수의 선택사항 중에 하나를 선택하고 싶을때 사용합니다. 

바로 예제로 들어가겠습니다. 


실행했을 때 화면입니다.


activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">

<RadioGroup
android:id="@+id/colorType"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>

<RadioButton
android:id="@+id/rg_total"
android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="전체"
/>

<RadioButton
android:id="@+id/rg_red"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="빨강"
/>

<RadioButton
android:id="@+id/rg_blue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="파랑"
/>

<RadioButton
android:id="@+id/rg_green"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="초록"
/>

</RadioGroup>
</LinearLayout>





MainActivity.java

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.RadioGroup;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

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


RadioGroup colorType = findViewById(R.id.colorType);

//라디오버튼 체크시 이벤트
        colorType.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {

if(checkedId == R.id.rg_total)
{
Toast.makeText(getApplicationContext(),"전체",Toast.LENGTH_SHORT).show();
}else if(checkedId == R.id.rg_red)
{
Toast.makeText(getApplicationContext(),"빨강",Toast.LENGTH_SHORT).show();
}else if(checkedId == R.id.rg_blue)
{
Toast.makeText(getApplicationContext(),"파랑",Toast.LENGTH_SHORT).show();
}else if(checkedId == R.id.rg_green)
{
Toast.makeText(getApplicationContext(),"초록",Toast.LENGTH_SHORT).show();
}
}
});
}
}

전체, 빨강, 파랑, 초록 이라는 조건 중에 하나를 선택하는 간단한 라디오버튼입니다.

선택하면 해당 조건을 선택했다는 알림이 뜹니다. 



반응형

관련글 더보기

댓글 영역