view_video_duration.xml
1.31 KB
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:id="@+id/tv_duration"
android:layout_width="wrap_content"
android:layout_height="@dimen/rmrb_dp16"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="@dimen/rmrb_dp6"
android:layout_marginBottom="@dimen/rmrb_dp6"
android:paddingEnd="@dimen/rmrb_dp2"
android:paddingStart="@dimen/rmrb_dp20"
android:textSize="@dimen/rmrb_dp14"
android:textColor="@color/res_color_common_C8"
android:gravity="center_vertical|right"
/>
<ImageView
android:id="@+id/iv_play"
android:layout_width="@dimen/rmrb_dp20"
android:layout_height="@dimen/rmrb_dp16"
android:src="@mipmap/rmrb_video_tag"
app:layout_constraintStart_toStartOf="@id/tv_duration"
app:layout_constraintBottom_toBottomOf="@id/tv_duration"
app:layout_constraintTop_toTopOf="@id/tv_duration"
/>
</androidx.constraintlayout.widget.ConstraintLayout>