blob: d734623ed247a0264b5a77df6411d75c1d41abde (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2012-2017 Arne Schwabe
~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/speedStatus"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
tools:text="some speed status" />
<CheckBox
android:id="@+id/useLogScale"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/speedStatus"
android:text="@string/use_logarithmic_scale" />
<ListView
android:id="@+id/graph_listview"
android:layout_above="@id/useLogScale"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
|