Android RadioButton 的属性
时间: 2023-11-11 20:20:50 浏览: 139
android RadioButton
1. android:text: 设置 RadioButton 的文本信息。
2. android:checked:设置 RadioButton 是否被选中。
3. android:button:设置 RadioButton 显示的图标。
4. android:buttonTint:设置 RadioButton 图标的着色颜色。
5. android:background:设置 RadioButton 的背景颜色或背景图片。
6. android:textColor:设置 RadioButton 的文本颜色。
7. android:textSize:设置 RadioButton 的文本大小。
8. android:id:设置 RadioButton 的唯一标识符。
9. android:layout_width:设置 RadioButton 的宽度。
10. android:layout_height:设置 RadioButton 的高度。
11. android:layout_margin:设置 RadioButton 与其它控件之间的间距。
12. android:layout_gravity:设置 RadioButton 在父容器中的位置。
阅读全文