2017-09-23 13:11:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-31 05:09:20 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-05 15:33:42 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-09-23 13:11:39 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-31 05:09:20 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2017-09-23 13:11:39 +02:00
|
|
|
|
2020-07-18 23:39:29 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2020-06-05 15:33:42 +02:00
|
|
|
android:id="@+id/title_wrapper"
|
2020-05-31 05:09:20 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-07-18 23:39:29 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
2020-06-05 15:33:42 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
2020-07-18 23:39:29 +02:00
|
|
|
android:layout_width="0dp"
|
2020-06-05 15:33:42 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/material_component_text_fields_padding_above_and_below_label"
|
2020-07-18 23:39:29 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/title_more_icon"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-06-05 15:33:42 +02:00
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
<ImageView
|
2020-07-18 23:39:29 +02:00
|
|
|
android:id="@+id/title_more_icon"
|
2020-06-05 15:33:42 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-18 23:39:29 +02:00
|
|
|
android:contentDescription="@string/label_more"
|
2020-06-05 15:33:42 +02:00
|
|
|
android:padding="@dimen/material_component_text_fields_padding_above_and_below_label"
|
2020-07-18 23:39:29 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-06-05 15:33:42 +02:00
|
|
|
app:srcCompat="@drawable/ic_arrow_forward_24dp"
|
2020-07-18 23:39:29 +02:00
|
|
|
app:tint="?android:attr/textColorPrimary" />
|
2020-06-05 15:33:42 +02:00
|
|
|
|
2020-07-18 23:39:29 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2017-09-23 13:11:39 +02:00
|
|
|
|
2020-07-18 23:46:29 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_results_found"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="@dimen/material_component_text_fields_padding_above_and_below_label"
|
|
|
|
android:paddingEnd="@dimen/material_component_text_fields_padding_above_and_below_label"
|
|
|
|
android:paddingBottom="@dimen/material_component_text_fields_padding_above_and_below_label"
|
|
|
|
android:text="@string/no_results_found"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.cardview.widget.CardView
|
2017-09-23 13:11:39 +02:00
|
|
|
android:id="@+id/source_card"
|
|
|
|
style="@style/Theme.Widget.CardView.Item"
|
2020-05-31 05:09:20 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="144dp">
|
2017-09-23 13:11:39 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyleSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-23 13:11:39 +02:00
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:clipToPadding="false"
|
2017-09-23 13:11:39 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingStart="4dp"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:paddingEnd="4dp"
|
2020-04-12 18:21:47 +02:00
|
|
|
tools:listitem="@layout/global_search_controller_card_item" />
|
2020-01-10 01:10:55 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.cardview.widget.CardView>
|
2020-01-10 01:10:55 +01:00
|
|
|
|
2020-05-31 05:09:20 +02:00
|
|
|
</LinearLayout>
|