Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 16, 2019 05:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/36392f121f91df07013cf9b09e932773 to your computer and use it in GitHub Desktop.
Save parzibyte/36392f121f91df07013cf9b09e932773 to your computer and use it in GitHub Desktop.
<RadioGroup
android:id="@+id/radioGroupTipoLugar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checkedButton="@id/rbPublico"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rbPrivado"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Privado" />
<RadioButton
android:id="@+id/rbPublico"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Público" />
</RadioGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment