Skip to content

Instantly share code, notes, and snippets.

@tugnt
Created October 24, 2016 04:03
Show Gist options
  • Save tugnt/98917e0a2293d6cddd2e0e6e21d3d4fb to your computer and use it in GitHub Desktop.
Save tugnt/98917e0a2293d6cddd2e0e6e21d3d4fb to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/pd_5dp"
android:orientation="vertical"
android:background="@android:color/white">
<TextView
android:background="@android:color/white"
android:id="@+id/choukai_question"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/pd_5dp"
android:layout_marginTop="@dimen/pd_5dp"
android:padding="@dimen/pd_3dp"
android:textColor="@color/color_gray_light_content_text" />
<Button
android:src="@drawable/ic_speaker"
android:id="@+id/play"
android:layout_margin="@dimen/pd_3dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<RadioGroup
android:id="@+id/kaito_choukai"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/dapan_a"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/apptheme_btn_radio_holo_light" />
<RadioButton
android:id="@+id/dapan_b"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/apptheme_btn_radio_holo_light" />
<RadioButton
android:id="@+id/dapan_c"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/apptheme_btn_radio_holo_light" />
<RadioButton
android:id="@+id/dapan_d"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/apptheme_btn_radio_holo_light" />
</RadioGroup>
<include layout="@layout/line_item" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment