|
|
@@ -1,6 +1,179 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent">
|
|
|
+<LinearLayout
|
|
|
+ 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">
|
|
|
|
|
|
-</android.support.constraint.ConstraintLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/img_bestbucket_banner_5">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
+ android:layout_toStartOf="@+id/text_view_select_bucket"
|
|
|
+ app:srcCompat="@drawable/icon_bucket_complete_white"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_select_bucket"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="8sp"
|
|
|
+ android:text="@string/bucket_select_text10"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:textSize="21sp"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:text="연관태그 추천 콘텐츠 31개"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <HorizontalScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="13dp"
|
|
|
+ android:scrollbars=""
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:text="#배낭여행"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:text="#북유럽"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:text="#배낭여행"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:text="#배낭여행"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:text="#배낭여행"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="9dp"
|
|
|
+ android:background="@drawable/custom_rectangle_radio_selector"
|
|
|
+ android:button="@null"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:text="#배낭여행"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@drawable/my_faq_radio_text_selector"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+ </HorizontalScrollView>
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_related_tag_list"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"/>
|
|
|
+
|
|
|
+
|
|
|
+</LinearLayout>
|