【发布时间】:2023-04-07 08:37:01
【问题描述】:
在单选组中选择单选按钮为 YES 必须启用文本视图,选择单选按钮为 NO 必须禁用 android 中的文本视图。
谁能解释我该怎么做?
布局代码:
<RadioGroup
android:id="@+id/rg5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/rg5r1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="NO" />
<RadioButton
android:id="@+id/rg5r2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="YES" />
</RadioGroup>
<TextView
android:id="@+id/q6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="If 'Yes' please list allergies"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/wight" />
【问题讨论】:
-
使用
CTRL+SHIFT+F格式化您的XML -
帮我解决我的问题我投票赞成你的问题
标签: android radio-group