71 lines
2.4 KiB
XML
71 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/black"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/layout_bottom"
|
|
android:layout_alignParentTop="true">
|
|
|
|
<VideoView
|
|
android:id="@+id/uVideoView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="35dp"
|
|
android:layout_marginRight="35dp" />
|
|
</FrameLayout>
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/layout_bottom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="55dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="55dp">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/id_rv_id"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/positionIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="35dp"
|
|
android:src="@drawable/lf_ugc_publish_pos" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<View
|
|
android:layout_width="35dp"
|
|
android:layout_height="match_parent"
|
|
android:background="#66000000" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/id_seekBarLayout"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" />
|
|
|
|
<View
|
|
android:layout_width="35dp"
|
|
android:layout_height="match_parent"
|
|
android:background="#66000000" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
</RelativeLayout>
|