26 lines
1019 B
XML
26 lines
1019 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">
|
|
<com.ubt.jimu.widgets.player.UbtPlayerView
|
|
android:layout_gravity="center"
|
|
android:id="@+id/sv_play"
|
|
android:background="@color/translucent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<FrameLayout
|
|
android:id="@+id/fl_video"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<com.github.chrisbanes.photoview.PhotoView
|
|
android:id="@+id/photoView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<ImageView
|
|
android:id="@+id/im_play_bnt"
|
|
android:layout_width="@dimen/dp90"
|
|
android:layout_height="@dimen/dp90"
|
|
android:src="@mipmap/play_video"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|