2017-09-23 19:11:39 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-31 11:09:20 +08:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-05 21:33:42 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-09-23 19:11:39 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-31 11:09:20 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2017-09-23 19:11:39 +08:00
|
|
|
|
2020-07-19 05:39:29 +08:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2020-06-05 21:33:42 +08:00
|
|
|
android:id="@+id/title_wrapper"
|
2020-05-31 11:09:20 +08:00
|
|
|
android:layout_width="match_parent"
|
2020-07-19 05:39:29 +08:00
|
|
|
android:layout_height="wrap_content"
|
2021-05-22 23:55:05 +08:00
|
|
|
android:background="@drawable/selectable_item_background">
|
2020-06-05 21:33:42 +08:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
2020-07-19 05:39:29 +08:00
|
|
|
android:layout_width="0dp"
|
2020-06-05 21:33:42 +08:00
|
|
|
android:layout_height="wrap_content"
|
2020-10-26 03:25:58 +08:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/subtitle"
|
2020-07-19 05:39:29 +08:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/title_more_icon"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-10-26 03:25:58 +08:00
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
2020-06-05 21:33:42 +08:00
|
|
|
tools:text="Title" />
|
|
|
|
|
2020-10-26 03:25:58 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/subtitle"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/title_more_icon"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title"
|
|
|
|
tools:text="English"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2020-06-05 21:33:42 +08:00
|
|
|
<ImageView
|
2020-07-19 05:39:29 +08:00
|
|
|
android:id="@+id/title_more_icon"
|
2020-06-05 21:33:42 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-19 05:39:29 +08:00
|
|
|
android:contentDescription="@string/label_more"
|
2021-05-22 22:10:41 +08:00
|
|
|
android:padding="16dp"
|
2020-07-19 05:39:29 +08:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-06-05 21:33:42 +08:00
|
|
|
app:srcCompat="@drawable/ic_arrow_forward_24dp"
|
2020-07-19 05:39:29 +08:00
|
|
|
app:tint="?android:attr/textColorPrimary" />
|
2020-06-05 21:33:42 +08:00
|
|
|
|
2020-07-19 05:39:29 +08:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2017-09-23 19:11:39 +08:00
|
|
|
|
2020-07-19 05:46:29 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_results_found"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-22 22:10:41 +08:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
2020-07-19 05:46:29 +08:00
|
|
|
android:text="@string/no_results_found"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2020-12-27 00:24:10 +08:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2020-10-25 01:07:06 +08:00
|
|
|
android:id="@+id/progress"
|
2020-12-27 00:24:10 +08:00
|
|
|
style="@style/Theme.Widget.CircularProgressIndicator.Small"
|
2020-10-25 01:07:06 +08:00
|
|
|
android:layout_width="wrap_content"
|
2020-05-31 11:09:20 +08:00
|
|
|
android:layout_height="wrap_content"
|
2020-12-27 00:24:10 +08:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true" />
|
2017-09-23 19:11:39 +08:00
|
|
|
|
2020-10-25 01:07:06 +08:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
tools:listitem="@layout/global_search_controller_card_item" />
|
2020-01-10 08:10:55 +08:00
|
|
|
|
2020-05-31 11:09:20 +08:00
|
|
|
</LinearLayout>
|