Rewrite the simulation graph component. It is now implemented as a fragment with...
[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     <View
9         android:layout_width="2000dp"
10         android:layout_height="0px"
11         android:layout_margin="0px"
12         android:orientation="horizontal" />
13
14     <TextView
15         android:layout_width="match_parent"
16         android:layout_height="wrap_content"
17         android:text="@string/simulationSeries1Label" />
18
19     <Spinner
20         android:id="@+id/simulationSeries1"
21         android:layout_width="match_parent"
22         android:layout_height="wrap_content"
23         android:drawSelectorOnTop="true" />
24
25     <TextView
26         android:layout_width="match_parent"
27         android:layout_height="wrap_content"
28         android:text="@string/simulationSeries2Label" />
29
30     <Spinner
31         android:id="@+id/simulationSeries2"
32         android:layout_width="match_parent"
33         android:layout_height="wrap_content"
34         android:drawSelectorOnTop="true" />
35
36     <Button
37         android:id="@+id/simulationOkButton"
38         android:layout_width="70dp"
39         android:layout_height="70dp"
40         android:layout_gravity="center_horizontal"
41         android:text="ok" />
42
43 </LinearLayout>