33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@android:color/white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<FrameLayout
|
|
android:id="@+id/flVideoViewContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<RelativeLayout
|
|
android:layout_gravity="top"
|
|
android:id="@+id/rlTop"
|
|
android:padding="16dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/imgCancel"
|
|
android:layout_width="59dp"
|
|
android:layout_height="59dp"
|
|
android:src="@mipmap/diy_title_back"
|
|
android:scaleType="centerInside"
|
|
android:layout_centerVertical="true"/>
|
|
<ImageView
|
|
android:id="@+id/imgAccept"
|
|
android:background="@mipmap/community_my_collection_complete"
|
|
android:layout_width="75dp"
|
|
android:layout_height="75dp"
|
|
android:scaleType="centerInside"
|
|
android:layout_alignParentRight="true"/>
|
|
</RelativeLayout>
|
|
</FrameLayout>
|