|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
android:id="@+id/main"
|
|
|
5 |
android:layout_width="match_parent"
|
|
|
6 |
android:layout_height="match_parent"
|
|
|
7 |
android:layout_marginLeft="4dp"
|
|
|
8 |
>
|
|
|
9 |
|
|
|
10 |
<include
|
|
|
11 |
android:id="@+id/header"
|
|
|
12 |
android:layout_width="match_parent"
|
|
|
13 |
android:layout_height="wrap_content"
|
|
|
14 |
android:layout_alignParentTop="true"
|
|
|
15 |
layout="@layout/header"
|
|
|
16 |
/>
|
|
|
17 |
|
|
|
18 |
<include
|
|
|
19 |
android:id="@+id/wave"
|
|
|
20 |
android:layout_width="match_parent"
|
|
|
21 |
android:layout_height="wrap_content"
|
|
|
22 |
android:layout_below="@id/header"
|
|
|
23 |
layout="@layout/wave"
|
|
|
24 |
/>
|
|
|
25 |
|
|
|
26 |
<Space
|
|
|
27 |
android:id="@+id/place_holder"
|
|
|
28 |
android:visibility="invisible"
|
|
|
29 |
|
|
|
30 |
android:layout_width="@dimen/graph_width"
|
|
|
31 |
android:layout_height="@dimen/graph_heigth"
|
|
|
32 |
android:layout_below="@id/header"
|
|
|
33 |
android:layout_alignParentStart="true"
|
|
|
34 |
/>
|
|
|
35 |
|
|
|
36 |
<ListView
|
|
|
37 |
android:id="@+id/handles"
|
|
|
38 |
android:layout_width="match_parent"
|
|
|
39 |
android:layout_height="match_parent"
|
|
|
40 |
android:layout_below="@id/place_holder"
|
|
|
41 |
android:layout_above="@+id/hint"
|
|
|
42 |
android:layout_alignParentStart="true"
|
|
|
43 |
android:layout_marginRight="4dp"
|
|
|
44 |
android:dividerHeight="0dp"
|
|
|
45 |
android:divider="@android:color/transparent"
|
|
|
46 |
/>
|
|
|
47 |
|
|
|
48 |
<TextView
|
|
|
49 |
android:id="@+id/hint"
|
|
|
50 |
android:layout_width="wrap_content"
|
|
|
51 |
android:layout_height="wrap_content"
|
|
|
52 |
android:layout_alignParentBottom="true"
|
|
|
53 |
android:text="long click on bar label to reset"
|
|
|
54 |
android:textStyle="italic"
|
|
|
55 |
/>
|
|
|
56 |
|
|
|
57 |
</RelativeLayout>
|