RadioButton
Overview
Radio button
Example
<RadioButton android:layout_height="wrap_parent" android:layout_width="match_parent" android:tag="btn" android:text="Button" android:textColor="#669999" android:textSize="14dp" android:gravity="center" android:checked="true" />Properties
Common Properties
Private Properties
| Property | Description | Values |
|---|---|---|
| layout_weight | Child weight | Number When the parent is LinearLayout, child controls can set weight |
| gravity | Internal control alignment | Usage reference top bottom left right center_vertical fill_vertical center_horizontal fill_horizontal center fill clip_vertical clip_horizontal |
| checked | Selected state | true: selected false: not selected |
| text | Text | String |
| textColor | Text color | Hex, e.g. #FFFFFF |
| textSize | Text size | specific number + dp |