22 lines
759 B
XML
22 lines
759 B
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"
|
|
android:orientation="vertical">
|
|
|
|
<VideoView
|
|
android:id="@+id/videoPlay"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true" />
|
|
|
|
<ImageView
|
|
android:id="@+id/back"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginTop="30dp"
|
|
android:padding="10dp"
|
|
android:src="@mipmap/icon_left" />
|
|
</RelativeLayout> |