Created
March 10, 2016 12:00
-
-
Save alorma/89b52ceee6f8506465de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:paddingLeft="@dimen/activity_horizontal_margin" | |
android:paddingRight="@dimen/activity_horizontal_margin" | |
android:paddingTop="@dimen/activity_vertical_margin" | |
android:paddingBottom="@dimen/activity_vertical_margin" | |
android:orientation="vertical" | |
tools:context="com.alorma.radiobuttons.MainActivity" | |
> | |
<RadioButton | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Hello default" | |
android:checked="true" | |
/> | |
<RadioButton | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Hello blue with parent" | |
android:theme="@style/elmeutema_style" | |
android:checked="true" | |
/> | |
<RadioButton | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Hello red with parent" | |
android:theme="@style/red_radio_style" | |
android:checked="true" | |
/> | |
<RadioButton | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Hello blue" | |
android:theme="@style/elmeutema" | |
android:checked="true" | |
/> | |
<RadioButton | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Hello red" | |
android:theme="@style/red_radio" | |
android:checked="true" | |
/> | |
</LinearLayout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
�PNG | |