cnlive_layout_media_player.xml
1.5 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
44
45
46
<?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="wrap_content">
<RelativeLayout
android:id="@+id/playerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000">
<com.cnlive.libs.video.player.CNMediaPlayerView
android:id="@+id/player"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"/>
</RelativeLayout>
<com.cnlive.lib_cnvideo.ui.widget.player.CNTouchView
android:id="@+id/playerTouch"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/playerLayout"
android:layout_alignTop="@+id/playerLayout"/>
<RelativeLayout
android:id="@+id/controllerLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/playerLayout"
android:layout_alignTop="@+id/playerLayout">
</RelativeLayout>
<ImageView
android:id="@+id/videoBack"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="3dp"
android:padding="11dp"
android:scaleType="fitCenter"
android:src="@drawable/cnlive_video_back" />
</RelativeLayout>