cloudstream/app/src/main/res/layout/result_episode_large.xml

139 lines
6.9 KiB
XML
Raw Normal View History

2021-06-26 17:03:22 +00:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
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"
2021-10-09 21:59:37 +00:00
android:nextFocusLeft="@id/episode_poster"
android:nextFocusRight="@id/result_episode_download"
android:id="@+id/episode_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-11-27 18:49:51 +00:00
app:cardCornerRadius="@dimen/rounded_image_radius"
2021-10-31 01:17:56 +00:00
app:cardBackgroundColor="?attr/boxItemBackground"
2021-10-09 21:59:37 +00:00
android:foreground="@drawable/outline_drawable"
2021-06-26 22:15:19 +00:00
android:layout_marginBottom="10dp"
2021-06-26 17:03:22 +00:00
>
<LinearLayout
2021-10-13 19:16:46 +00:00
android:foreground="?android:attr/selectableItemBackgroundBorderless"
2021-06-26 17:03:22 +00:00
android:padding="10dp"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2021-06-26 19:32:50 +00:00
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
2021-06-26 22:15:19 +00:00
<!--app:cardCornerRadius="@dimen/roundedImageRadius"-->
2021-06-26 19:32:50 +00:00
<androidx.cardview.widget.CardView
2021-06-26 17:03:22 +00:00
android:layout_width="126dp"
android:layout_height="72dp"
2021-10-13 19:16:46 +00:00
android:foreground="@drawable/outline_drawable"
2021-06-26 17:03:22 +00:00
>
<ImageView
2021-10-09 21:59:37 +00:00
android:nextFocusLeft="@id/result_episode_download"
android:nextFocusRight="@id/episode_holder"
2021-06-26 17:03:22 +00:00
android:id="@+id/episode_poster"
tools:src="@drawable/example_poster"
2021-10-13 19:16:46 +00:00
android:foreground="?android:attr/selectableItemBackgroundBorderless"
2021-06-26 17:03:22 +00:00
android:scaleType="centerCrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-09-03 23:24:47 +00:00
android:contentDescription="@string/episode_poster_img_des">
2021-06-26 17:03:22 +00:00
</ImageView>
2021-06-26 19:32:50 +00:00
<ImageView
android:src="@drawable/play_button"
android:layout_gravity="center"
android:layout_width="36dp"
android:layout_height="36dp"
android:contentDescription="@string/play_episode">
2021-06-26 17:03:22 +00:00
</ImageView>
<androidx.core.widget.ContentLoadingProgressBar
2021-06-26 22:15:19 +00:00
android:layout_marginBottom="-1.5dp"
2021-06-26 17:03:22 +00:00
android:id="@+id/episode_progress"
2021-09-19 20:33:39 +00:00
android:progressTint="?attr/colorPrimary"
android:progressBackgroundTint="?attr/colorPrimary"
2021-06-26 17:03:22 +00:00
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>
2021-06-26 19:32:50 +00:00
</androidx.cardview.widget.CardView>
<LinearLayout
android:layout_marginStart="15dp"
android:orientation="vertical"
android:layout_gravity="center"
android:layout_width="match_parent"
2021-07-15 16:45:25 +00:00
android:layout_marginEnd="50dp"
2021-06-26 19:32:50 +00:00
android:layout_height="wrap_content">
<TextView
android:id="@+id/episode_text"
tools:text="1. Jobless"
2021-06-26 22:15:19 +00:00
android:textStyle="bold"
2021-10-31 01:17:56 +00:00
android:textColor="?attr/textColor"
2021-06-26 19:32:50 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content">
2021-06-26 17:03:22 +00:00
</TextView>
2021-06-26 19:32:50 +00:00
<TextView
android:id="@+id/episode_rating"
2021-06-26 22:15:19 +00:00
tools:text="Rated: 8.8"
2021-10-31 01:17:56 +00:00
android:textColor="?attr/grayTextColor"
2021-06-26 19:32:50 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content">
2021-06-26 17:03:22 +00:00
</TextView>
</LinearLayout>
2021-07-24 20:50:57 +00:00
<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
2021-10-09 21:59:37 +00:00
android:nextFocusLeft="@id/episode_poster"
android:nextFocusRight="@id/episode_holder"
android:id="@+id/result_episode_download"
2021-10-31 18:28:35 +00:00
android:tint="?attr/white"
2021-07-24 20:50:57 +00:00
android:visibility="visible"
android:layout_marginEnd="10dp"
android:layout_marginStart="10dp"
2021-07-25 14:25:09 +00:00
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2021-07-24 20:50:57 +00:00
android:padding="2dp"
android:layout_width="30dp"
android:background="?selectableItemBackgroundBorderless"
android:src="@drawable/ic_baseline_play_arrow_24"
2021-09-02 16:51:13 +00:00
android:contentDescription="@string/download"/>
2021-07-24 20:50:57 +00:00
</FrameLayout>
2021-06-26 17:03:22 +00:00
</LinearLayout>
<TextView
2021-06-26 19:32:50 +00:00
android:paddingTop="10dp"
android:paddingBottom="10dp"
2021-06-26 17:03:22 +00:00
android:id="@+id/episode_descript"
2021-10-31 01:17:56 +00:00
android:textColor="?attr/grayTextColor"
2021-06-26 17:03:22 +00:00
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>