-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.xml
More file actions
50 lines (50 loc) · 1.66 KB
/
layout.xml
File metadata and controls
50 lines (50 loc) · 1.66 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
<?xml version="1.0" encoding="utf-8"?>
<layout onlaunch="launch">
<tabs>
<tab text="Play">
<row>
<button color="green" icon="vmute" ontap="volume_mute" />
<button color="green" icon="vdown" ontap="volume_down" />
<button color="green" icon="vup" ontap="volume_up" />
</row>
<row>
<button color="green" icon="fullscreen" ontap="fullscreen" />
<button color="green" text="TV Ch -" ontap="channel_down" />
<button color="green" text="TV Ch +" ontap="channel_up" />
</row>
<row>
<button color="green" icon="rwd" ontap="fast_back" />
<button color="green" icon="ff" ontap="fast_forward" />
</row>
<row>
<button color="green" icon="left" ontap="jump_back" />
<button color="green" icon="right" ontap="jump_forward" />
</row>
<row>
<button color="green" icon="pause" ontap="play_pause" />
<button color="green" icon="play" ontap="play_pause" />
</row>
</tab>
<tab text="Main">
<row>
<button color="green" icon="back" ontap="back" />
<button color="green" text="Menu" ontap="menu" />
<button color="green" text="Info" ontap="info" />
</row>
<row>
<button color="green" text="Zoom" ontap="zoom" />
<button color="orange" icon="arrowup" ontap="up" />
<button color="green" text="Close Window" ontap="close_window" />
</row><row>
<button color="orange" icon="arrowleft" ontap="left" />
<button color="orange" icon="select" ontap="select" />
<button color="orange" icon="arrowright" ontap="right" />
</row>
<row>
<button color="green" />
<button color="orange" icon="arrowdown" ontap="down" />
<button color="green" />
</row>
</tab>
</tabs>
</layout>