jimu-decompiled/resources/res/layout/activity_video_preview_new.xml
2025-05-13 19:24:51 +02:00

33 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<VideoView
android:id="@+id/vv_preview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:textColor="@color/bg_white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageView
android:id="@+id/img_play"
android:background="@drawable/icon_play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
<ProgressBar
android:id="@+id/pb_play"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progress="40"
android:layout_alignParentBottom="true"
style="@android:style/Widget.ProgressBar.Horizontal"/>
<TextView
android:textColor="@color/bg_white"
android:id="@+id/tv_video_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/pb_play"/>
</RelativeLayout>