|
@@ -196,6 +196,58 @@
|
|
|
android:layout_marginBottom="@dimen/common_padding"
|
|
|
android:background="@color/line_color" />
|
|
|
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:baselineAligned="false"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/is_return"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/is_return"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="end"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/is_return_yes"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/style_radio_button"
|
|
|
+ android:buttonTint="@color/title_background_color"
|
|
|
+ android:text="@string/yes"
|
|
|
+ android:textColor="@color/text_color" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/is_return_no"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:background="@drawable/style_radio_button"
|
|
|
+ android:buttonTint="@color/title_background_color"
|
|
|
+ android:checked="true"
|
|
|
+ android:text="@string/no"
|
|
|
+ android:textColor="@color/text_color" />
|
|
|
+ </RadioGroup>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|