|
|
@@ -12,7 +12,7 @@
|
|
|
android:id="@+id/app_bar_layout"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@null"
|
|
|
+ android:background="@color/CFFFFFF"
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
|
|
@@ -149,6 +149,7 @@
|
|
|
android:layout_marginTop="33dp"
|
|
|
android:layout_marginEnd="25dp"
|
|
|
android:layout_marginBottom="11dp"
|
|
|
+ android:background="@color/CFFFFFF"
|
|
|
app:layout_collapseMode="pin"
|
|
|
tools:background="@color/C888888">
|
|
|
|
|
|
@@ -215,33 +216,45 @@
|
|
|
android:orientation="vertical"
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
- <View
|
|
|
- android:id="@+id/view_divider"
|
|
|
- android:layout_width="match_parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginTop="3dp"
|
|
|
- android:layout_marginStart="25dp"
|
|
|
- android:layout_marginEnd="25dp"
|
|
|
- android:background="@color/C000000"
|
|
|
- android:visibility="visible"
|
|
|
- tools:visibility="visible"
|
|
|
- />
|
|
|
|
|
|
<include
|
|
|
layout="@layout/my_coin_filter_view"
|
|
|
android:visibility="gone"
|
|
|
- tools:visibility="visible"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/recycler_view_coin_list"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
app:layout_constraintTop_toTopOf="@+id/view_divider"
|
|
|
- app:layout_constraintBottom_toTopOf="@+id/recycler_view_coin_list"
|
|
|
+ tools:visibility="visible"
|
|
|
/>
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/layout_filter_contents"
|
|
|
android:id="@+id/recycler_view_coin_list"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"/>
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_filter_contents"/>
|
|
|
+
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/space"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="3dp"
|
|
|
+ android:background="@color/CFFFFFF"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/view_divider"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ tools:background="@color/C888888"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_divider"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@color/C000000"
|
|
|
+ android:visibility="visible"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/space"
|
|
|
+ tools:visibility="visible"
|
|
|
+ />
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
</android.support.design.widget.CoordinatorLayout>
|