Android 학습 의 길 3: CheckBox 와 RadioButton
6149 단어 RadioButton
CheckBox (체크 상자) 사례:
XML 코드 (1. java 코드 는 상관 하지 않 아 도 됩 니 다. 2. LinearLayout 의 vertical 을 사용 해 야 합 니 다. 그렇지 않 으 면 옵션 이 겹 칩 니 다):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<CheckBox
android:id="@+id/chk1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice1"/>
<CheckBox
android:id="@+id/chk2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice2"/>
<CheckBox
android:id="@+id/chk3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice3"/>
</LinearLayout>
RadioButton (단일 선택 상자) 사례:
XML 코드 (1. 자바 코드 를 사용 하지 않 으 면 보 여줄 수 있 습 니 다. 2. RelateveLayout 를 사용 하려 면 LinearLayout 를 사용 하면 경고 가 나타 납 니 다. "This RadioGroup layot or its LinearLayout parent is useless"):
<RelateveLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkedButton="@+id/radioGroupValue">
<RadioButton
android:id="@+id/chk1"
android:text="@string/choice1"/>
<RadioButton
android:id="@+id/chk2"
android:text="@string/choice2"/>
<RadioButton
android:id="@+id/chk3"
android:text="@string/choice3"/>
</RadioGroup>
</RelateveLayout>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
장고 양식의 ChoiceField에서 Bootstrap의 btn-group을 사용하고 싶습니다.・이런 느낌을 RadioSelect의 widget을 사용해 하고 싶었다. 장고 3.1.2 Bootstrap 4.3.1 forms.py 이런 Form이 있다고 해서, 이 interval을 위와 같은 Bootstrap의...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.