layout_player.xml
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<com.cnlive.goldenline.ui.widget.PlayerListLayoutParent xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/playerLayout"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@android:color/black"
android:visibility="gone">
<com.cnlive.libs.video.video.VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true" />
<com.cnlive.goldenline.ui.widget.player.PlayerTouchView
android:id="@+id/playerTouchView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.cnlive.goldenline.ui.widget.player.PlayerControllerView
android:id="@+id/playerControllerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.cnlive.goldenline.ui.widget.player.PlayerInfoView
android:id="@+id/playerInfoView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<master.flame.danmaku.ui.widget.DanmakuView
android:id="@+id/danmuview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_centerInParent="true" />
<!--<include-->
<!--layout="@layout/danmu_controller_layout"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_alignParentBottom="true" />-->
</com.cnlive.goldenline.ui.widget.PlayerListLayoutParent>