|
|
@@ -1,14 +1,138 @@
|
|
|
<?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="match_parent">
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
- android:orientation="horizontal"
|
|
|
android:id="@+id/recycler_view_listicle_view"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent">
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="19dp"
|
|
|
+ android:layout_marginBottom="16dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ tools:background="@color/CD0D0D0">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_pre_page"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingEnd="7dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@id/text_view_current_page"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/text_view_current_page"
|
|
|
+ app:layout_constraintHorizontal_bias="0.5"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/text_view_current_page"
|
|
|
+ app:srcCompat="@drawable/ic_page_prev"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_current_page"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="4dp"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="12dp"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/slash"
|
|
|
+ app:layout_constraintHorizontal_bias="0.5"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/image_view_pre_page"
|
|
|
+ tools:text="1"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/slash"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="4dp"
|
|
|
+ android:text=" / "
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="12dp"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/text_view_total_page"
|
|
|
+ app:layout_constraintHorizontal_bias="0.5"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/text_view_current_page"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_total_page"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="4dp"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="12dp"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/image_view_next_page"
|
|
|
+ app:layout_constraintHorizontal_bias="0.5"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/slash"
|
|
|
+ tools:text="1"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_next_page"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingStart="7dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/text_view_total_page"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/text_view_total_page"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/text_view_total_page"
|
|
|
+ app:srcCompat="@drawable/ic_page_next"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_title_number"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginBottom="110dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="7dp"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="26dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ tools:text="05"
|
|
|
+ tools:textColor="@color/C000000"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/oval"
|
|
|
+ android:layout_width="7dp"
|
|
|
+ android:layout_height="7dp"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:layout_marginTop="13dp"
|
|
|
+ android:src="@drawable/oval_cffffff"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@id/text_view_title_number"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/text_view_title_number"
|
|
|
+ app:layout_constraintTop_toTopOf="@id/text_view_title_number"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="17dp"
|
|
|
+ android:lineSpacingExtra="7dp"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="18dp"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/text_view_title_number"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_title_number"
|
|
|
+ tools:text="진주, 로스팅웨어"
|
|
|
+ tools:textColor="@color/C000000"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_sub_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
+ android:lineSpacingExtra="4dp"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="12sp"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/text_view_title"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_title"
|
|
|
+ tools:text="대문샷을 부르는 감각적인 로스팅 팩토리"
|
|
|
+ tools:textColor="@color/C000000"/>
|
|
|
</android.support.constraint.ConstraintLayout>
|