|
|
@@ -0,0 +1,188 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<android.support.constraint.ConstraintLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/layout_filter_contents"
|
|
|
+ tools:visibility="visible"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="160dp"
|
|
|
+ android:background="@color/CF8F8F8"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="25dp"
|
|
|
+ android:paddingTop="30dp"
|
|
|
+ android:paddingEnd="25dp">
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:weightSum="5">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingTop="8dp"
|
|
|
+ android:paddingBottom="8dp"
|
|
|
+ android:text="@string/one_week"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingTop="8dp"
|
|
|
+ android:paddingBottom="8dp"
|
|
|
+ android:text="@string/one_month"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingTop="8dp"
|
|
|
+ android:paddingBottom="8dp"
|
|
|
+ android:text="@string/three_month"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingTop="8dp"
|
|
|
+ android:paddingBottom="8dp"
|
|
|
+ android:text="@string/six_month"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingTop="8dp"
|
|
|
+ android:paddingBottom="8dp"
|
|
|
+ android:text="@string/one_year"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio_button_user"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@null"
|
|
|
+ android:button="@null"
|
|
|
+ android:drawableLeft="@drawable/my_faq_radio_selector"
|
|
|
+ android:drawablePadding="8dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/all"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio_button_coupon"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@null"
|
|
|
+ android:button="@null"
|
|
|
+ android:drawableLeft="@drawable/my_faq_radio_selector"
|
|
|
+ android:drawablePadding="8dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/saving"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio_benefit"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@null"
|
|
|
+ android:button="@null"
|
|
|
+ android:drawableLeft="@drawable/my_faq_radio_selector"
|
|
|
+ android:drawablePadding="8dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/use"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="19dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="2dp"
|
|
|
+ android:layout_height="2dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:src="@drawable/rectangle_c999999"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:text="@string/select_coin_possible_message"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</android.support.constraint.ConstraintLayout>
|