Skip to content

Instantly share code, notes, and snippets.

@Chris-Gillis
Last active December 20, 2015 19:38
Show Gist options
  • Save Chris-Gillis/6184325 to your computer and use it in GitHub Desktop.
Save Chris-Gillis/6184325 to your computer and use it in GitHub Desktop.
RadioGroup Layout
<RadioGroup android:id="@+id/radioGroup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
android:background="@color/MidnightBlue"
>
<RadioButton android:id="@+id/radioButtonAll"
style="@style/RadioButtonStyle"
android:text="All"
android:checked="true"
/>
<RadioButton android:id="@+id/radioButtonTop"
style="@style/RadioButtonStyle"
android:text="Top"
/>
</RadioGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment