1、继承关系和子类:
2、定义:
RadioButton表示单个圆形单选框,而RadioGroup是可以容纳多个RadioButton的容器
3、XML重要属性:
4、重要方法:
5、实战:
布局文件
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="不確定" />
参考1:
http://developer.android.com/intl/zh-cn/reference/android/widget/RadioButton.html
参考2:
http://www.cnblogs.com/wt616/archive/2011/06/20/2085531.html