mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
123 lines
No EOL
6.3 KiB
XML
123 lines
No EOL
6.3 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:padding="10dp"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<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="126dp"
|
|
android:layout_height="72dp"
|
|
>
|
|
<ImageView
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
android:id="@+id/episode_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>
|
|
<ImageView
|
|
android:src="@drawable/play_button"
|
|
android:layout_gravity="center"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:contentDescription="@string/play_episode">
|
|
</ImageView>
|
|
<androidx.core.widget.ContentLoadingProgressBar
|
|
android:layout_marginBottom="-1.5dp"
|
|
android:id="@+id/episode_progress"
|
|
android:progressTint="@color/colorPrimary"
|
|
android:progressBackgroundTint="@color/colorPrimary"
|
|
style="@android:style/Widget.Material.ProgressBar.Horizontal"
|
|
android:layout_width="match_parent"
|
|
tools:progress="50"
|
|
android:layout_gravity="bottom"
|
|
android:layout_height="5dp">
|
|
</androidx.core.widget.ContentLoadingProgressBar>
|
|
</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/episode_text"
|
|
tools:text="1. Jobless"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/textColor"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/episode_rating"
|
|
tools:text="Rated: 8.8"
|
|
android:textColor="@color/grayTextColor"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
</LinearLayout>
|
|
<FrameLayout
|
|
android:layout_marginStart="-50dp"
|
|
android:layout_gravity="end"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent">
|
|
<androidx.core.widget.ContentLoadingProgressBar
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:id="@+id/result_episode_progress_downloaded"
|
|
android:indeterminate="false"
|
|
android:progressDrawable="@drawable/circular_progress_bar"
|
|
android:background="@drawable/circle_shape"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:max="100"
|
|
android:layout_margin="5dp"
|
|
android:layout_gravity="end|center_vertical"
|
|
android:progress="0"
|
|
android:visibility="visible"
|
|
/>
|
|
<ImageView
|
|
android:visibility="visible"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:padding="2dp"
|
|
android:layout_width="30dp"
|
|
android:id="@+id/result_episode_download"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:src="@drawable/ic_baseline_play_arrow_24"
|
|
android:contentDescription="@string/download_descript"/>
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:id="@+id/episode_descript"
|
|
android:textColor="@color/grayTextColor"
|
|
tools:text="Jon and Daenerys arrive in Winterfell and are met with skepticism. Sam learns about the fate of his family. Cersei gives Euron the reward he aims for. Theon follows his heart. "
|
|
android:layout_width="match_parent" android:layout_height="wrap_content">
|
|
</TextView>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView> |