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-06-05 09:33:42 -04:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/title_wrapper"
|
2020-05-30 23:09:20 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-06-05 09:33:42 -04:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/material_component_text_fields_padding_above_and_below_label"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:padding="@dimen/material_component_text_fields_padding_above_and_below_label"
|
|
|
|
app:srcCompat="@drawable/ic_arrow_forward_24dp"
|
|
|
|
app:tint="?android:attr/textColorPrimary"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
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>
|