| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?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.constraint.ConstraintLayout
- android:id="@+id/container_top"
- android:layout_width="match_parent"
- android:layout_height="52dp"
- app:layout_constraintTop_toTopOf="parent"
- >
- <android.support.constraint.ConstraintLayout
- android:id="@+id/container_navigation_bar"
- android:layout_width="match_parent"
- android:layout_height="52dp">
- </android.support.constraint.ConstraintLayout>
- <android.support.v7.widget.RecyclerView
- android:id="@+id/recycler_view_tag"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="42dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"/>
- </android.support.constraint.ConstraintLayout>
- <android.support.design.widget.CoordinatorLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- app:layout_constrainedHeight="true"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/container_top">
- <android.support.design.widget.AppBarLayout
- android:id="@+id/app_bar_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/CFFFFFF"
- app:elevation="0dp"
- >
- <android.support.design.widget.CollapsingToolbarLayout
- android:id="@+id/collapsing_tool_bar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/CFFFFFF"
- app:layout_scrollFlags="scroll|exitUntilCollapsed">
- <android.support.v7.widget.Toolbar
- android:id="@+id/toolbar_invisible"
- android:layout_width="match_parent"
- tools:background="@color/CF6F6F6"
- android:layout_height="35dp"
- android:layout_gravity="center"
- android:background="@null"
- android:visibility="invisible"
- app:elevation="0dp"
- app:layout_scrollFlags="scroll"
- />
- <android.support.constraint.ConstraintLayout
- android:id="@+id/container_category"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_marginTop="9dp"
- android:background="@color/CFFFFFF"
- android:orientation="vertical"
- app:layout_collapseMode="pin">
- <android.support.v7.widget.RecyclerView
- android:id="@+id/recycler_view_category"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:clipToPadding="false"
- android:paddingStart="17dp"
- android:paddingEnd="80dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"/>
- <View
- android:layout_width="28dp"
- android:layout_height="35dp"
- android:background="@drawable/rectangle_cffffff_gradation"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toStartOf="@+id/image_filter"/>
- <ImageView
- android:id="@+id/image_filter"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="17dp"
- android:background="@color/CFFFFFF"
- android:padding="8dp"
- android:scaleType="center"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:srcCompat="@drawable/ic_filter_de_copy_4"/>
- <View
- android:layout_width="18dp"
- android:layout_height="35dp"
- android:background="@color/CFFFFFF"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toEndOf="@+id/image_filter"/>
- </android.support.constraint.ConstraintLayout>
- </android.support.design.widget.CollapsingToolbarLayout>
- </android.support.design.widget.AppBarLayout>
- <android.support.constraint.ConstraintLayout
- android:id="@+id/container_search_result"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/CFFFFFF"
- android:orientation="vertical"
- app:layout_behavior="@string/appbar_scrolling_view_behavior"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintTop_toBottomOf="@id/container_category"
- tools:background="@color/CF6F6F6">
- <android.support.v7.widget.RecyclerView
- android:id="@+id/recycler_view_search_result"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:clipToPadding="false"
- android:paddingTop="5dp"
- android:paddingBottom="@dimen/action_bar_height"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintTop_toTopOf="parent"/>
- </android.support.constraint.ConstraintLayout>
- </android.support.design.widget.CoordinatorLayout>
- </android.support.constraint.ConstraintLayout>
|