|
|
@@ -42,12 +42,14 @@
|
|
|
app:layout_collapseMode="pin"
|
|
|
tools:visibility="gone"
|
|
|
/>
|
|
|
+
|
|
|
<Space
|
|
|
android:id="@+id/space"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="23dp"
|
|
|
android:visibility="gone"
|
|
|
tools:visibility="visible"/>
|
|
|
+
|
|
|
<RelativeLayout
|
|
|
android:id="@+id/relative_layout_spinner_filter"
|
|
|
android:layout_width="wrap_content"
|
|
|
@@ -87,7 +89,7 @@
|
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
@@ -97,9 +99,37 @@
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
android:id="@+id/recycler_view_category_main"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
+ android:layout_height="0dp"
|
|
|
android:layout_gravity="bottom"
|
|
|
android:clipToPadding="false"
|
|
|
- />
|
|
|
- </LinearLayout>
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_contents_nothing"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="92dp"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:srcCompat="@drawable/icon_contents_nothing_copy"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_contents_nothing"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/category_main_filter_nothing"
|
|
|
+ android:textColor="@color/CC5C5C5"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/image_view_contents_nothing"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
</android.support.design.widget.CoordinatorLayout>
|