fragment_inter_tv_detail.xml
3.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/live_off_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/play_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.ivt.plus.vitamio.CNMediaPlayer
android:id="@+id/player"
android:layout_width="match_parent"
android:layout_height="180dp"
android:background="@android:color/black" />
<include layout="@layout/fragment_inter_impend_image" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/other"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/play_layout">
<RelativeLayout
android:id="@+id/container_part"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/foot"
android:background="@color/config_background_color">
<LinearLayout
android:id="@+id/container_part_top"
android:layout_width="match_parent"
android:layout_height="37dp"
android:background="@color/TextColorWhite"
android:orientation="horizontal">
<com.ivt.plus.indicator.TabPageIndicator
android:id="@+id/indicator"
android:layout_width="match_parent"
android:layout_height="37dp"
android:layout_weight="1" />
<ImageButton
android:id="@+id/btn_fullscreen"
style="@style/fullscreen_style"
android:visibility="gone" />
</LinearLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/container_part_top" />
<ListView
android:id="@+id/active_view"
android:layout_width="48dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/container_part_top"
android:layout_marginBottom="12dp"
android:layout_marginTop="42dp"
android:cacheColorHint="#00000000"
android:divider="@null"
android:fadingEdge="none"
android:listSelector="#00000000"
android:scrollbars="none"
android:visibility="gone" />
</RelativeLayout>
<LinearLayout
android:id="@+id/foot"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:visibility="gone">
<include
android:id="@+id/footer_layout"
layout="@layout/footer" />
<LinearLayout
android:id="@+id/footer_for_emoticons"
android:layout_width="match_parent"
android:layout_height="@dimen/keyboard_height"
android:background="@android:color/transparent"
android:orientation="horizontal"
android:visibility="gone" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>