123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <RelativeLayout
- android:id="@+id/title_wrapper"
- android:layout_width="match_parent"
- 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>
- <androidx.cardview.widget.CardView
- android:id="@+id/source_card"
- style="@style/Theme.Widget.CardView.Item"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:minHeight="144dp">
- <ProgressBar
- android:id="@+id/progress"
- style="?android:attr/progressBarStyleSmall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recycler"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:clipToPadding="false"
- android:orientation="horizontal"
- android:paddingStart="4dp"
- android:paddingEnd="4dp"
- tools:listitem="@layout/global_search_controller_card_item" />
- </androidx.cardview.widget.CardView>
- </LinearLayout>
|