62 lines
2.6 KiB
XML
62 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/root"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/constraintLayout"
|
|
android:layout_width="@dimen/dp_200"
|
|
android:layout_height="@dimen/dp_200"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<com.shehuan.niv.NiceImageView
|
|
android:id="@+id/video_image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="centerCrop"
|
|
app:is_cover_src="true" />
|
|
|
|
<com.shehuan.niv.NiceImageView
|
|
android:id="@+id/iv_status"
|
|
android:layout_width="@dimen/dp_32"
|
|
android:layout_height="@dimen/dp_32"
|
|
android:src="@drawable/status_download"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/duration"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="@dimen/dp_4"
|
|
android:layout_marginBottom="@dimen/dp_4"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:text="00:00"
|
|
android:textColor="@color/white"
|
|
android:textSize="@dimen/sp_7"
|
|
app:layout_constraintBottom_toBottomOf="@+id/video_image"
|
|
app:layout_constraintEnd_toEndOf="@+id/video_image" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/title_text"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_4"
|
|
android:maxLines="2"
|
|
android:text=""
|
|
android:textColor="@color/black"
|
|
android:visibility="gone"
|
|
app:layout_constraintEnd_toEndOf="@+id/constraintLayout"
|
|
app:layout_constraintStart_toStartOf="@+id/constraintLayout"
|
|
app:layout_constraintTop_toBottomOf="@+id/constraintLayout" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |