mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.1 KiB
83 lines
3.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:foreground="@drawable/shape_vod">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="150dp"
|
|
android:layout_height="80dp"
|
|
android:background="@color/black_20"
|
|
app:shapeAppearanceOverlay="@style/Vod.Grid" />
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/delete"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignStart="@+id/image"
|
|
android:layout_alignTop="@+id/image"
|
|
android:layout_alignEnd="@+id/image"
|
|
android:layout_alignBottom="@+id/name"
|
|
android:background="@color/black_50"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_action_delete"
|
|
android:visibility="gone"
|
|
app:shapeAppearanceOverlay="@style/Vod.Grid.Large"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/site"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shape_vod_site"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp"
|
|
android:visibility="gone"
|
|
tools:text="泥巴"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/remark"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/progress"
|
|
android:background="@drawable/shape_vod_remark"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp"
|
|
tools:text="1080p" />
|
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
|
android:id="@+id/progress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/image"
|
|
android:layout_alignStart="@+id/image"
|
|
android:layout_alignEnd="@+id/image"
|
|
app:indicatorColor="@color/white"
|
|
app:trackColor="@color/grey_500" />
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/progress"
|
|
android:layout_alignStart="@+id/image"
|
|
android:layout_alignEnd="@+id/image"
|
|
android:background="@drawable/shape_vod_name"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:textColor="@color/white"
|
|
app:autoSizeMaxTextSize="14sp"
|
|
app:autoSizeMinTextSize="12sp"
|
|
app:autoSizeStepGranularity="1sp"
|
|
app:autoSizeTextType="uniform"
|
|
tools:text="蜘蛛人" />
|
|
|
|
</RelativeLayout> |