이번 시간에는 라디오버튼에 대해 알아보겠습니다.
데이터를 입력하는 부분에서 콤보박스처럼 흔하게 쓰이는게 바로 라디오 버튼입니다.
다수의 선택사항 중에 하나를 선택하고 싶을때 사용합니다.
바로 예제로 들어가겠습니다.
실행했을 때 화면입니다.
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();
}
}
});
}
}
전체, 빨강, 파랑, 초록 이라는 조건 중에 하나를 선택하는 간단한 라디오버튼입니다.
선택하면 해당 조건을 선택했다는 알림이 뜹니다.
[안드로이드]버튼클릭 랜덤숫자 생성 랜덤 배경색 바꾸기 Math.random() (0) | 2020.06.08 |
---|---|
[안드로이드] 라디오버튼 예제 배경색 바꾸기 setOnCheckedChangeListener (0) | 2020.06.08 |
[안드로이드]sqlite DB 위치 알아보기 (0) | 2020.06.06 |
[안드로이드]탭(TAB) 선택시 색상지정 setTabTextColors (0) | 2020.06.05 |
[안드로이드]두 번째 개발한 안심택배앱 개발 체험기 (0) | 2020.06.03 |
댓글 영역