create changelog entry
[debian/openrocket] / android / res / layout / simulation_plot_config_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     <TextView
8         android:layout_width="match_parent"
9         android:layout_height="wrap_content"
10         android:text="@string/simulationSeries1Label" />
11
12     <Spinner
13         android:id="@+id/simulationSeries1"
14         android:layout_width="match_parent"
15         android:layout_height="wrap_content"
16         android:drawSelectorOnTop="true" />
17
18     <TextView
19         android:layout_width="match_parent"
20         android:layout_height="wrap_content"
21         android:text="@string/simulationSeries2Label" />
22
23     <Spinner
24         android:id="@+id/simulationSeries2"
25         android:layout_width="match_parent"
26         android:layout_height="wrap_content"
27         android:drawSelectorOnTop="true" />
28
29     <ListView
30         android:id="@+id/simulationEventsList"
31         android:layout_width="fill_parent"
32         android:layout_height="0dp"
33         android:layout_weight="1" />
34
35     <Button
36         android:id="@+id/simulationOkButton"
37         android:layout_width="70dp"
38         android:layout_height="45dp"
39         android:layout_gravity="center_horizontal"
40         android:text="@string/plot" />
41
42 </LinearLayout>