|
|
@@ -1,361 +1,406 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<LinearLayout
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
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="match_parent"
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:background="@color/CF8F8F8"
|
|
|
- >
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/CF8F8F8"
|
|
|
+ >
|
|
|
|
|
|
- <RelativeLayout
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="117dp"
|
|
|
+ android:layout_marginStart="30dp"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:layout_marginEnd="30dp"
|
|
|
+ android:layout_marginBottom="25dp"
|
|
|
+ android:background="@color/CFFFFFF">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_coin_detail"
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="117dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:layout_marginStart="30dp"
|
|
|
- android:layout_marginTop="25dp"
|
|
|
- android:layout_marginEnd="30dp"
|
|
|
- android:layout_marginBottom="25dp"
|
|
|
- android:background="@color/CFFFFFF">
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:lineSpacingExtra="10sp"
|
|
|
+ android:text="6,900"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="25sp"
|
|
|
+ />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_coin_detail"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="30dp"
|
|
|
- android:layout_marginTop="20dp"
|
|
|
- android:lineSpacingExtra="10sp"
|
|
|
- android:text="6,900"
|
|
|
- android:textColor="@color/C000000"
|
|
|
- android:textSize="25sp"
|
|
|
- />
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="14dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:layout_marginStart="3dp"
|
|
|
+ android:layout_marginTop="31dp"
|
|
|
+ android:layout_toRightOf="@+id/text_view_coin_detail"
|
|
|
+ app:srcCompat="@drawable/icon_coin"/>
|
|
|
|
|
|
- <ImageView
|
|
|
- android:layout_width="14dp"
|
|
|
- android:layout_height="14dp"
|
|
|
- android:layout_alignParentTop="true"
|
|
|
- android:layout_marginStart="3dp"
|
|
|
- android:layout_marginTop="31dp"
|
|
|
- android:layout_toRightOf="@+id/text_view_coin_detail"
|
|
|
- app:srcCompat="@drawable/icon_coin"/>
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_coin"
|
|
|
+ android:layout_width="14dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:layout_below="@+id/divider"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_marginTop="19dp"
|
|
|
+ android:layout_marginEnd="30dp"
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/image_view_coin"
|
|
|
- android:layout_width="14dp"
|
|
|
- android:layout_height="14dp"
|
|
|
- android:layout_below="@+id/divider"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- android:layout_marginTop="19dp"
|
|
|
- android:layout_marginEnd="30dp"
|
|
|
-
|
|
|
- app:srcCompat="@drawable/icon_coin"/>
|
|
|
-
|
|
|
- <View
|
|
|
- android:id="@+id/divider"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_alignParentStart="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_marginStart="30dp"
|
|
|
- android:layout_marginEnd="30dp"
|
|
|
- android:background="@color/CE5E5E5"/>
|
|
|
+ app:srcCompat="@drawable/icon_coin"/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_extinct_coin"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignStart="@+id/text_view_coin_detail"
|
|
|
- android:layout_alignParentBottom="true"
|
|
|
- android:layout_marginStart="1dp"
|
|
|
- android:layout_marginBottom="19dp"
|
|
|
- android:lineSpacingExtra="4sp"
|
|
|
- android:text="당월 소멸예정코인"
|
|
|
- android:textColor="@color/C666666"
|
|
|
- android:textSize="12sp"/>
|
|
|
+ <View
|
|
|
+ android:id="@+id/divider"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginStart="30dp"
|
|
|
+ android:layout_marginEnd="30dp"
|
|
|
+ android:background="@color/CE5E5E5"/>
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/image_view_coin_detail"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentTop="true"
|
|
|
- android:layout_marginStart="2dp"
|
|
|
- android:layout_marginLeft="48dp"
|
|
|
- android:layout_marginTop="86dp"
|
|
|
- android:layout_toRightOf="@+id/text_view_extinct_coin"
|
|
|
- app:srcCompat="@drawable/icon_detail_arrow"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_extinct_coin"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignStart="@+id/text_view_coin_detail"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_marginStart="1dp"
|
|
|
+ android:layout_marginBottom="19dp"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:text="당월 소멸예정코인"
|
|
|
+ android:textColor="@color/C666666"
|
|
|
+ android:textSize="12sp"/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@+id/divider"
|
|
|
- android:layout_marginTop="15dp"
|
|
|
- android:layout_marginEnd="3dp"
|
|
|
- android:layout_toLeftOf="@+id/image_view_coin"
|
|
|
- android:lineSpacingExtra="6sp"
|
|
|
- android:text="-410"
|
|
|
- android:textColor="@color/C000000"
|
|
|
- android:textSize="16sp"/>
|
|
|
- </RelativeLayout>
|
|
|
- </LinearLayout>
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_coin_detail"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:layout_marginStart="2dp"
|
|
|
+ android:layout_marginLeft="48dp"
|
|
|
+ android:layout_marginTop="86dp"
|
|
|
+ android:layout_toRightOf="@+id/text_view_extinct_coin"
|
|
|
+ app:srcCompat="@drawable/icon_detail_arrow"/>
|
|
|
|
|
|
- <RelativeLayout
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@+id/divider"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ android:layout_marginEnd="3dp"
|
|
|
+ android:layout_toLeftOf="@+id/image_view_coin"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="-410"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="16sp"/>
|
|
|
+ </RelativeLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="33dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:layout_marginBottom="11dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:text="조회결과 5건"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_toLeftOf="@id/text_view_mark"
|
|
|
+ android:lineSpacingExtra="3.5sp"
|
|
|
+ android:text="2018.05.01"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_mark"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:layout_marginEnd="4dp"
|
|
|
+ android:layout_toLeftOf="@+id/text_view_select_date2"
|
|
|
+ android:lineSpacingExtra="3.5sp"
|
|
|
+ android:text="~"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_select_date2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:layout_toLeftOf="@+id/image_view_filter"
|
|
|
+ android:lineSpacingExtra="3.5sp"
|
|
|
+ android:text="2018.06.05"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_filter"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ app:srcCompat="@drawable/icon_filter"
|
|
|
+ />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <!--기준 divider-->
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_divider"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@color/C000000"
|
|
|
+ android:visibility="visible"
|
|
|
+ tools:visibility="gone"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!--필터 클릭시 divider-->
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/filter_divider"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:visibility="gone"
|
|
|
+ tools:visibility="visible"
|
|
|
+ >
|
|
|
+ <View
|
|
|
+ android:id="@+id/filter_divider1"
|
|
|
+ android:layout_width="31dp"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:background="@color/C000000"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_arrow"
|
|
|
+ android:layout_width="7dp"
|
|
|
+ android:layout_height="7dp"
|
|
|
+ android:layout_marginStart="-1.5dp"
|
|
|
+ android:layout_marginEnd="-1.5dp"
|
|
|
+ android:layout_marginRight="-1dp"
|
|
|
+ android:layout_toLeftOf="@+id/filter_divider1"
|
|
|
+ android:rotation="90"
|
|
|
+ app:srcCompat="@drawable/icon_header_back"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginStart="0dp"
|
|
|
+ android:layout_marginEnd="0dp"
|
|
|
+ android:layout_toStartOf="@+id/image_view_arrow"
|
|
|
+ android:layout_toEndOf="@id/image_view_arrow"
|
|
|
+ android:background="@color/C000000"/>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/layout_filter_contents"
|
|
|
+ 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"
|
|
|
+ android:visibility="gone"
|
|
|
+ tools:visibility="visible"
|
|
|
+ >
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="25dp"
|
|
|
- android:layout_marginTop="33dp"
|
|
|
- android:layout_marginEnd="25dp"
|
|
|
- android:layout_marginBottom="11dp">
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:weightSum="5">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <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:text="조회결과 5건"
|
|
|
- android:textColor="@color/C999999"
|
|
|
+ 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"
|
|
|
/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_toLeftOf="@id/text_view_mark"
|
|
|
- android:lineSpacingExtra="3.5sp"
|
|
|
- android:text="2018.05.01"
|
|
|
- android:textColor="#999999"
|
|
|
+ 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"
|
|
|
/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_mark"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="4dp"
|
|
|
- android:layout_marginEnd="4dp"
|
|
|
- android:layout_toLeftOf="@+id/text_view_select_date2"
|
|
|
- android:lineSpacingExtra="3.5sp"
|
|
|
- android:text="~"
|
|
|
- android:textColor="#999999"
|
|
|
+ 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"
|
|
|
/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_select_date2"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginEnd="9dp"
|
|
|
- android:layout_toLeftOf="@+id/image_view_filter"
|
|
|
- android:lineSpacingExtra="3.5sp"
|
|
|
- android:text="2018.06.05"
|
|
|
- android:textColor="#999999"
|
|
|
+ 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"
|
|
|
/>
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/image_view_filter"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <RadioButton
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- app:srcCompat="@drawable/icon_filter"
|
|
|
+ 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"
|
|
|
/>
|
|
|
- </RelativeLayout>
|
|
|
+ </RadioGroup>
|
|
|
|
|
|
- <View
|
|
|
+ <RadioGroup
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginStart="25dp"
|
|
|
- android:layout_marginEnd="25dp"
|
|
|
- android:background="@color/C000000"/>
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/layout_filter_contents"
|
|
|
- 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"
|
|
|
- android:visibility="gone"
|
|
|
- tools:visibility="visible"
|
|
|
- >
|
|
|
-
|
|
|
-
|
|
|
- <RadioGroup
|
|
|
- android:layout_width="match_parent"
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio_button_user"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
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"
|
|
|
- />
|
|
|
+ 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: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: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: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: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>
|
|
|
|
|
|
- <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>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="19dp"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <RadioGroup
|
|
|
+ <LinearLayout
|
|
|
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"
|
|
|
- />
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
|
|
|
- <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"
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="2dp"
|
|
|
+ android:layout_height="2dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:src="@drawable/rectangle"
|
|
|
/>
|
|
|
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/radio_benefit"
|
|
|
+ <TextView
|
|
|
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"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:text="@string/select_coin_possible_message"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="12sp"
|
|
|
/>
|
|
|
- </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"
|
|
|
- />
|
|
|
-
|
|
|
- <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.v7.widget.RecyclerView
|
|
|
- android:id="@+id/recycler_view_coin_list"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="25dp"
|
|
|
- android:layout_marginEnd="25dp"/>
|
|
|
- </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_coin_list"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"/>
|
|
|
+</LinearLayout>
|