-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity_instruction.xml
51 lines (48 loc) · 2.22 KB
/
activity_instruction.xml
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/instruction" android:clickable="true"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" android:background="#000">
<LinearLayout
android:layout_weight="5"
android:orientation="horizontal"
android:layout_width="match_parent" android:layout_height="wrap_content">
<VideoView
android:layout_weight="1"
android:id="@+id/instruction_imv1"
android:layout_width="0dp" android:layout_height="200dp" />
<ImageView
android:layout_weight="1"
android:id="@+id/instruction_imv2"
android:layout_width="0dp" android:layout_height="200dp"
android:background="@drawable/inst_tap" />
</LinearLayout>
<ImageView
android:layout_weight="2"
android:src="@drawable/touch"
android:layout_width="match_parent" android:layout_height="wrap_content" />
<LinearLayout
android:layout_weight="5"
android:orientation="horizontal"
android:layout_width="match_parent" android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/avoid"
android:layout_width="match_parent" android:layout_height="wrap_content" />
<ImageView
android:src="@drawable/incoming"
android:layout_width="match_parent" android:layout_height="wrap_content" />
<ImageView
android:src="@drawable/balls"
android:layout_width="match_parent" android:layout_height="wrap_content" />
</LinearLayout>
<VideoView
android:layout_weight="1"
android:id="@+id/instruction_imv3"
android:layout_width="0dp" android:layout_height="200dp" />
</LinearLayout>
</LinearLayout>