|
|
@@ -1,12 +1,56 @@
|
|
|
<?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">
|
|
|
+<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="match_parent">
|
|
|
+
|
|
|
<kr.co.zumo.app.lifeplus.view.custom.main.series.MainSeriesView
|
|
|
android:id="@+id/series_image_text_view"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
-
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="23dp"
|
|
|
+ android:clipToPadding="false">
|
|
|
</kr.co.zumo.app.lifeplus.view.custom.main.series.MainSeriesView>
|
|
|
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/relativeLayout"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/series_image_text_view">
|
|
|
+
|
|
|
+ <Spinner
|
|
|
+ android:id="@+id/spinner_mobile_company"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="45dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:background="@drawable/filter_drop_down"
|
|
|
+ android:entries="@array/main_filter"
|
|
|
+ android:focusable="true"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="14sp"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_marginEnd="10dp"
|
|
|
+ android:padding="14dp"
|
|
|
+ app:srcCompat="@drawable/ic_filter_de"
|
|
|
+ />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_first_category_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:clipToPadding="false"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/relativeLayout"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ />
|
|
|
</android.support.constraint.ConstraintLayout>
|