|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
android:layout_width="match_parent"
|
|
|
5 |
android:layout_height="match_parent"
|
|
|
6 |
android:background="#000"
|
|
|
7 |
>
|
|
|
8 |
|
|
|
9 |
<LinearLayout
|
|
|
10 |
android:id="@+id/buttons"
|
|
|
11 |
android:layout_width="match_parent"
|
|
|
12 |
android:layout_height="wrap_content"
|
|
|
13 |
android:orientation="horizontal"
|
|
|
14 |
>
|
|
|
15 |
|
|
|
16 |
<Button
|
|
|
17 |
android:id="@+id/analyze"
|
|
|
18 |
android:layout_width="wrap_content"
|
|
|
19 |
android:layout_height="wrap_content"
|
|
|
20 |
android:layout_weight="1"
|
|
|
21 |
android:text="analyze"
|
|
|
22 |
/>
|
|
|
23 |
|
|
|
24 |
<Button
|
|
|
25 |
android:id="@+id/expose"
|
|
|
26 |
android:layout_width="wrap_content"
|
|
|
27 |
android:layout_height="wrap_content"
|
|
|
28 |
android:layout_weight="1"
|
|
|
29 |
android:text="expose"
|
|
|
30 |
android:visibility="gone"
|
|
|
31 |
/>
|
|
|
32 |
</LinearLayout>
|
|
|
33 |
|
|
|
34 |
<ScrollView
|
|
|
35 |
android:id="@+id/sc"
|
|
|
36 |
android:layout_width="fill_parent"
|
|
|
37 |
android:layout_height="fill_parent"
|
|
|
38 |
android:layout_below="@+id/buttons"
|
|
|
39 |
>
|
|
|
40 |
|
|
|
41 |
<TextView
|
|
|
42 |
android:id="@+id/tv"
|
|
|
43 |
android:layout_width="wrap_content"
|
|
|
44 |
android:layout_height="wrap_content"
|
|
|
45 |
/>
|
|
|
46 |
|
|
|
47 |
</ScrollView>
|
|
|
48 |
|
|
|
49 |
</RelativeLayout> |