|
|
@@ -9,7 +9,9 @@
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
android:id="@+id/container_top"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="52dp">
|
|
|
+ android:layout_height="52dp"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ >
|
|
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
android:id="@+id/container_navigation_bar"
|
|
|
@@ -58,5 +60,75 @@
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/container_latest_search_tag"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintBottom_toTopOf="@id/container_papular_tag"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/container_top"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_latest_tag"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:text="@string/search_latest_search_tag"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_latest_tage"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingTop="4dp"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_latest_tag"/>
|
|
|
+
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/container_papular_tag"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/container_latest_search_tag"
|
|
|
+ >
|
|
|
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_popular_tag"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:text="@string/search_popular_tag"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_popular_tag"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:paddingTop="4dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_popular_tag"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/container_result"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/container_top"
|
|
|
+ tools:visibility="gone">
|
|
|
+
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/recycler_view_result"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
</android.support.constraint.ConstraintLayout>
|