2022-04-25 17:34:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-04-27 19:48:27 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-12-03 21:55:53 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/search_result_root"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-04-25 17:34:14 +00:00
|
|
|
|
2022-12-03 21:55:53 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:foreground="@drawable/outline_drawable"
|
|
|
|
android:orientation="vertical">
|
2022-04-25 17:34:14 +00:00
|
|
|
|
2022-06-09 13:50:55 +00:00
|
|
|
<androidx.cardview.widget.CardView
|
2022-12-03 21:55:53 +00:00
|
|
|
android:id="@+id/background_card"
|
|
|
|
android:layout_width="match_parent"
|
2023-01-18 18:03:50 +00:00
|
|
|
android:layout_height="wrap_content"
|
2022-12-03 21:55:53 +00:00
|
|
|
android:layout_margin="2dp"
|
|
|
|
android:layout_marginBottom="2dp"
|
|
|
|
android:elevation="10dp"
|
|
|
|
app:cardBackgroundColor="?attr/primaryGrayBackground"
|
|
|
|
app:cardCornerRadius="@dimen/rounded_image_radius">
|
2022-06-09 13:50:55 +00:00
|
|
|
|
|
|
|
<ImageView
|
2022-12-03 21:55:53 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
android:layout_width="match_parent"
|
2022-06-09 13:50:55 +00:00
|
|
|
|
2022-12-03 21:55:53 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:contentDescription="@string/search_poster_img_des"
|
|
|
|
android:duplicateParentState="true"
|
|
|
|
android:foreground="?android:attr/selectableItemBackgroundBorderless"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
tools:src="@drawable/example_poster" />
|
2022-04-25 17:34:14 +00:00
|
|
|
|
2022-12-03 21:55:53 +00:00
|
|
|
<TextView android:id="@+id/text_quality" style="@style/TypeButton" />
|
2022-04-25 17:34:14 +00:00
|
|
|
|
2022-06-09 13:50:55 +00:00
|
|
|
<LinearLayout
|
2022-12-03 21:55:53 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:orientation="vertical">
|
2022-04-25 17:34:14 +00:00
|
|
|
|
|
|
|
<TextView
|
2022-12-03 21:55:53 +00:00
|
|
|
android:id="@+id/text_is_dub"
|
|
|
|
style="@style/DubButton"
|
|
|
|
android:layout_gravity="end" />
|
2022-04-25 17:34:14 +00:00
|
|
|
|
2022-06-09 13:50:55 +00:00
|
|
|
<TextView
|
2022-12-03 21:55:53 +00:00
|
|
|
android:id="@+id/text_is_sub"
|
|
|
|
style="@style/SubButton"
|
|
|
|
android:layout_gravity="end" />
|
2022-07-25 01:18:27 +00:00
|
|
|
|
|
|
|
<TextView
|
2022-12-03 21:55:53 +00:00
|
|
|
android:id="@+id/text_flag"
|
|
|
|
style="@style/SearchBox"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:background="@color/transparent"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="🇸🇪"
|
|
|
|
tools:visibility="visible" />
|
2022-06-09 13:50:55 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
2022-04-25 17:34:14 +00:00
|
|
|
|
2022-06-09 13:50:55 +00:00
|
|
|
<TextView
|
2022-12-03 21:55:53 +00:00
|
|
|
android:id="@+id/imageText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:minLines="2"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:textColor="?attr/textColor"
|
|
|
|
android:textSize="13sp"
|
|
|
|
tools:text="The Perfect Run\nThe Perfect Run" />
|
2022-04-27 19:48:27 +00:00
|
|
|
</LinearLayout>
|