Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
RadioButton group(그룹)으로 사용하기 본문
잘안쓰지만 언젠가는 사용할일이 있겠지 싶은 물건.
주의할점이라고 하면 RadioGroup , RadioButton은 직계 부모 자식 간이어야 합니다.
먼저 그룹값을 가져온뒤
그중에 선택퇸 라디오버튼을 다시한번 가져와서
그것의 라벨내용을 사용합니다.
주의할점이라고 하면 RadioGroup , RadioButton은 직계 부모 자식 간이어야 합니다.
<RadioGroup android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/sex"
android:orientation="horizontal">
<RadioButton android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/male"
android:text="@string/male"></RadioButton>
<RadioButton android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/female"
android:text="@string/female"></RadioButton>
</RadioGroup>
RadioGroup sexGroup = (RadioGroup) findViewById(R.id.sex);
RadioButton sex = (RadioButton) findViewById(sexGroup.getCheckedRadioButtonId());
sex.getText().toString();
'Android' 카테고리의 다른 글
녹음시 소리 인식해서 자동 켜고 끌수 있는 기능 (2) | 2017.08.04 |
---|---|
Sqlite에서 db close를 안해도 된다? (0) | 2017.08.04 |
Realm tour 비디오 정리글 (0) | 2017.04.07 |
오픈소스 라이버러리 모음 (0) | 2017.01.30 |
[링크][ANDROID(안드로이드) 앱 개발 기초] MEDIAPLAYER 음악 재생하기 (0) | 2016.12.13 |