-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout.xml
More file actions
91 lines (79 loc) · 2.23 KB
/
layout.xml
File metadata and controls
91 lines (79 loc) · 2.23 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
<?xml version="1.0" encoding="utf-8"?>
<layout orientation="portrait">
<row weight="2">
<tabs color="#424242">
<!-- Main Interface Control Tab -->
<tab color="#1565C0" text="Main Interface">
<!-- Category Switcher -->
<row>
<grid>
<row>
<button color="#42A5F5" text="Movies" ontap="switchvideosource,movies" />
<button color="#42A5F5" text="TV Shows" ontap="switchvideosource,tv" />
<button color="#42A5F5" text="Anime" ontap="switchvideosource,anime" />
</row>
</grid>
</row>
<!-- Gap -->
<row weight="1"></row>
<row>
<grid>
<!-- Arrow controls -->
<button weight="3" icon="search" ontap="search" />
<button weight="1" text="clear search" ontap="clearsearch" />
<button weight="1" text="Change Quality" ontap="changequality" />
<!-- End of Arrow Controls -->
</grid>
</row>
<!-- Gap -->
<row weight="1"></row>
<!-- Navigation Controls -->
<row weight="2">
<!-- Arrow Buttons -->
<grid>
<row>
<button icon="up" ontap="moveup" />
</row>
<row>
<button icon="left" ontap="moveleft" />
<button icon="right" ontap="moveright" />
</row>
<row>
<button icon="down" ontap="movedown" />
</row>
</grid>
<!-- Select/Back Buttons -->
<grid>
<row>
<button icon="back" ontap="goback" />
</row>
<row>
<button text="select\n(Play Video)" ontap="select"/>
</row>
</grid>
</row>
</tab>
<!-- Video Player Control Tab -->
<tab color="#7CB342" text="Video Player">
<grid>
<!-- Gap -->
<row weight="5"></row>
<!-- Volume + Fullscreen Control -->
<row weight="1">
<button icon="vdown" ontap="volumedown" />
<button icon="vup" ontap="volumeup"/>
<button icon="vmute" ontap="volumemute" />
<button icon="fullscreen" ontap="togglefullscreen" />
</row>
<!-- Playback Controls -->
<row weight="1">
<button icon="playpause" />
<button icon="rwd" ontap="skipbackward" />
<button icon="ff" ontap="skipforward" />
<button id="skiptime" text="10s" ontap="skiptimetoggle" />
</row>
</grid>
</tab>
</tabs>
</row>
</layout>