Radio button allow the user to select one option from a set.
Example of Radio button
- <RadioGroup
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/radioGroupSend">
- <RadioButton
- android:id="@+id/radioEmail"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Email"
- android:layout_marginTop="10dp"
- android:checked="false"
- android:textSize="20dp" />
- <RadioButton
- android:id="@+id/radioWhatsApp"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="WhatsApp"
- android:layout_marginTop="20dp"
- android:checked="false"
- android:textSize="20dp" />
- </RadioGroup>
Post a Comment