|
|
@@ -0,0 +1,49 @@
|
|
|
+<?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_marginTop="@dimen/action_bar_height"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/CFFFFFF">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:lineSpacingExtra="8sp"
|
|
|
+ android:text="@string/with_shown_contents"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="21dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_sub_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="9dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/with_shown_contents_detail"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="14dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_title"/>
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_with_shown_contents"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="311dp"
|
|
|
+ android:layout_marginTop="35dp"
|
|
|
+ android:clipToPadding="false"
|
|
|
+ android:paddingStart="19dp"
|
|
|
+ android:paddingEnd="19dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_sub_title"/>
|
|
|
+
|
|
|
+</android.support.constraint.ConstraintLayout>
|