【发布时间】:2016-05-24 11:49:34
【问题描述】:
您好,我有两个单选按钮,我需要动态添加单选组。 这个怎么做? 这是我的xml,谢谢
<RadioButton
android:id="@+id/radiotwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:checked="false"
android:text="b"
android:textSize="23dp" />
<RadioButton
android:id="@+id/radioone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:checked="false"
android:text="a"
android:textSize="23dp" />
【问题讨论】:
-
那你为什么不动态添加单选组和单选按钮呢?
标签: android radio-button radio-group