1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
android:layout_width="match_parent"
|
4
|
android:layout_height="match_parent"
|
5
|
android:orientation="vertical">
|
6
|
|
7
|
<LinearLayout
|
8
|
android:id="@+id/hiddenBar"
|
9
|
android:layout_width="match_parent"
|
10
|
android:layout_height="100dp"
|
11
|
android:gravity="center"
|
12
|
android:orientation="horizontal"
|
13
|
android:background="@android:color/transparent">
|
14
|
</LinearLayout>
|
15
|
|
16
|
<LinearLayout
|
17
|
android:id="@+id/upperBar"
|
18
|
android:layout_width="match_parent"
|
19
|
android:layout_height="100dp"
|
20
|
android:gravity="center"
|
21
|
android:orientation="horizontal"
|
22
|
android:background="@android:color/transparent">
|
23
|
</LinearLayout>
|
24
|
|
25
|
<LinearLayout
|
26
|
android:layout_width="match_parent"
|
27
|
android:layout_height="match_parent"
|
28
|
android:gravity="center"
|
29
|
android:orientation="vertical"
|
30
|
android:background="@android:color/transparent">
|
31
|
|
32
|
<org.distorted.config.ConfigSurfaceView
|
33
|
android:id="@+id/configSurfaceView"
|
34
|
android:layout_width="match_parent"
|
35
|
android:layout_height="0dp"
|
36
|
android:layout_weight="1"/>
|
37
|
|
38
|
<ScrollView
|
39
|
android:id="@+id/configScroll"
|
40
|
android:layout_width="match_parent"
|
41
|
android:layout_height="0dp"
|
42
|
android:layout_weight="1"/>
|
43
|
|
44
|
</LinearLayout>
|
45
|
|
46
|
<LinearLayout
|
47
|
android:id="@+id/lowerBar"
|
48
|
android:layout_width="match_parent"
|
49
|
android:layout_height="100dp"
|
50
|
android:orientation="horizontal"
|
51
|
android:background="@android:color/transparent">
|
52
|
</LinearLayout>
|
53
|
|
54
|
</LinearLayout>
|