|
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="wrap_content"
|
|
|
6 |
>
|
|
|
7 |
|
|
|
8 |
<include
|
|
|
9 |
android:id="@+id/menu"
|
|
|
10 |
layout="@layout/menu"
|
|
|
11 |
android:layout_width="wrap_content"
|
|
|
12 |
android:layout_height="wrap_content"
|
|
|
13 |
/>
|
|
|
14 |
|
|
|
15 |
<TextView
|
|
|
16 |
android:id="@+id/dispWave"
|
|
|
17 |
android:layout_width="match_parent"
|
|
|
18 |
android:layout_height="wrap_content"
|
|
|
19 |
android:layout_toRightOf="@+id/menu"
|
|
|
20 |
android:layout_toLeftOf="@id/reset"
|
|
|
21 |
android:gravity="center"
|
|
|
22 |
android:paddingEnd="6dp"
|
|
|
23 |
android:singleLine="true"
|
|
|
24 |
android:ellipsize="middle"
|
|
|
25 |
/>
|
|
|
26 |
|
|
|
27 |
<hh.ui.FlatButton
|
|
|
28 |
android:id="@+id/reset"
|
|
|
29 |
android:layout_width="wrap_content"
|
|
|
30 |
android:layout_height="wrap_content"
|
|
|
31 |
android:layout_toLeftOf="@id/mute"
|
|
|
32 |
android:layout_centerVertical="true"
|
|
|
33 |
android:paddingEnd="5dip"
|
|
|
34 |
android:textSize="11sp"
|
|
|
35 |
android:text="reset"
|
|
|
36 |
/>
|
|
|
37 |
|
|
|
38 |
<hh.ui.FlatButton
|
|
|
39 |
android:id="@+id/mute"
|
|
|
40 |
android:layout_width="wrap_content"
|
|
|
41 |
android:layout_height="wrap_content"
|
|
|
42 |
android:layout_alignParentEnd="true"
|
|
|
43 |
android:layout_centerVertical="true"
|
|
|
44 |
android:paddingEnd="5dip"
|
|
|
45 |
android:textSize="11sp"
|
|
|
46 |
android:text="mute"
|
|
|
47 |
/>
|
|
|
48 |
|
|
|
49 |
<TextView
|
|
|
50 |
android:id="@+id/tag"
|
|
|
51 |
android:layout_width="wrap_content"
|
|
|
52 |
android:layout_height="wrap_content"
|
|
|
53 |
android:layout_alignParentLeft="true"
|
|
|
54 |
android:layout_below="@+id/menu"
|
|
|
55 |
android:singleLine="true"
|
|
|
56 |
android:text="@string/app_name"
|
|
|
57 |
/>
|
|
|
58 |
|
|
|
59 |
</RelativeLayout> |