pandorapan/video/src/main/res/layout/view_video_process.xml
18142669586 a02f7b2e22 1
2024-02-23 16:07:50 +08:00

62 lines
2.2 KiB
XML

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000"
>
<LinearLayout
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical"
>
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="10dp"
android:text="@string/video_process_1"
android:textColor="#fff"
android:textSize="14sp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<com.yunbao.video.custom.NumberProgressBar
android:id="@+id/progressbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginRight="5dp"
android:layout_weight="1"
app:progress_current="0"
app:progress_max="100"
app:progress_reached_bar_height="1.5dp"
app:progress_reached_color="@color/global"
app:progress_text_color="@color/global"
app:progress_text_size="13sp"
app:progress_unreached_bar_height="0.75dp"
app:progress_unreached_color="@color/white"
/>
<ImageView
android:id="@+id/btn_cancel"
android:layout_width="30dp"
android:layout_height="30dp"
android:padding="8dp"
android:src="@mipmap/icon_video_process_close"
android:tint="@color/white"
/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>