mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
65 lines
No EOL
2.9 KiB
XML
65 lines
No EOL
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
app:cardCornerRadius="@dimen/roundedImageRadius"
|
|
app:cardBackgroundColor="@color/itemBackground"
|
|
android:id="@+id/episode_holder"
|
|
android:foreground="?android:attr/selectableItemBackgroundBorderless"
|
|
android:layout_marginBottom="10dp"
|
|
>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:orientation="horizontal"
|
|
android:layout_height="wrap_content">
|
|
<!--app:cardCornerRadius="@dimen/roundedImageRadius"-->
|
|
<androidx.cardview.widget.CardView
|
|
|
|
android:layout_width="70dp"
|
|
android:layout_height="104dp"
|
|
>
|
|
<ImageView
|
|
android:id="@+id/download_header_poster"
|
|
tools:src="@drawable/example_poster"
|
|
android:scaleType="centerCrop"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:contentDescription="@string/episode_poster">
|
|
</ImageView>
|
|
</androidx.cardview.widget.CardView>
|
|
<LinearLayout
|
|
android:layout_marginStart="15dp"
|
|
android:orientation="vertical"
|
|
android:layout_gravity="center"
|
|
android:layout_width="match_parent"
|
|
android:layout_marginEnd="50dp"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/download_header_title"
|
|
tools:text="Perfect Run"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/textColor"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/download_header_info"
|
|
tools:text="1 episode | 285MB"
|
|
android:textColor="@color/grayTextColor"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
</LinearLayout>
|
|
<ImageView
|
|
android:layout_marginStart="-40dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="30dp"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:src="@drawable/ic_baseline_keyboard_arrow_right_24"
|
|
android:contentDescription="@string/download_descript"/>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView> |