关于Android中的radioGroup选择
xml定义如下:
<RadioGroup
android:id="@+id/sex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="男"
/>
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"
/>
</RadioGroup>
本以为
radioGroup的check(int i);
这个参数i就是序号呢
开始就用check(0),check(1)来设置,但总是不行
原来这个参数是组件的id
应该用check(radio0.getId)