Show events and times on the chart. The achartengine needs some work to get the...
[debian/openrocket] / android / res / layout / simulation_series_dialog.xml
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     <!-- shim to get dialog correct size ?? -->
8     <!--
9     <View
10         android:layout_width="200dp"
11         android:layout_height="0px"
12         android:layout_margin="0px"
13         android:orientation="horizontal" />
14     -->
15
16     <TextView
17         android:layout_width="match_parent"
18         android:layout_height="wrap_content"
19         android:text="@string/simulationSeries1Label" />
20
21     <Spinner
22         android:id="@+id/simulationSeries1"
23         android:layout_width="match_parent"
24         android:layout_height="wrap_content"
25         android:drawSelectorOnTop="true" />
26
27     <TextView
28         android:layout_width="match_parent"
29         android:layout_height="wrap_content"
30         android:text="@string/simulationSeries2Label" />
31
32     <Spinner
33         android:id="@+id/simulationSeries2"
34         android:layout_width="match_parent"
35         android:layout_height="wrap_content"
36         android:drawSelectorOnTop="true" />
37
38     <ListView
39         android:id="@+id/simulationEventsList"
40         android:layout_width="fill_parent"
41         android:layout_height="0dp"
42         android:layout_weight="1" />
43
44     <Button
45         android:id="@+id/simulationOkButton"
46         android:layout_width="70dp"
47         android:layout_height="45dp"
48         android:layout_gravity="center_horizontal"
49         android:text="ok" />
50
51 </LinearLayout>