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