<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:id="@+id/container"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
|
<FrameLayout
|
android:id="@+id/fl_container"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<com.lcjian.library.widget.RatioLayout
|
android:id="@+id/rl_container"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
app:ratio="1">
|
|
<SurfaceView
|
android:id="@+id/video_view"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
</com.lcjian.library.widget.RatioLayout>
|
|
</FrameLayout>
|
|
|
<com.yeshi.video.player.common.VideoPlayerController
|
android:id="@+id/vpc_funshion"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"></com.yeshi.video.player.common.VideoPlayerController>
|
|
<FrameLayout
|
android:id="@+id/fl_ad"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="#000000"
|
android:visibility="gone">
|
|
<ProgressBar
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"></ProgressBar>
|
|
</FrameLayout>
|
</FrameLayout>
|
|
|
</LinearLayout>
|