create changelog entry
[debian/openrocket] / android / res / layout / tcqueryform.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:descendantFocusability="beforeDescendants"
6     android:focusableInTouchMode="true"
7     android:minWidth="250dp"
8     android:orientation="vertical" >
9
10     <TextView
11         android:id="@+id/textView1"
12         style="@style/labelTextStyle"
13         android:layout_width="wrap_content"
14         android:layout_height="wrap_content"
15         android:text="@string/motor_manufacturer" />
16
17     <Spinner
18         android:id="@+id/TCMotorSearchFormManufacturerField"
19         android:layout_width="match_parent"
20         android:layout_height="wrap_content"
21         android:entries="@array/TCMotorSearchManufacturerList" />
22
23     <TextView
24         style="@style/labelTextStyle"
25         android:layout_width="wrap_content"
26         android:layout_height="wrap_content"
27         android:text="@string/motor_impulseclass" />
28
29     <Spinner
30         android:id="@+id/TCMotorSearchFormImpulseField"
31         android:layout_width="match_parent"
32         android:layout_height="wrap_content"
33         android:entries="@array/TCMotorSearchImpulseList" />
34
35     <TextView
36         style="@style/labelTextStyle"
37         android:layout_width="wrap_content"
38         android:layout_height="wrap_content"
39         android:text="@string/motor_commonname" />
40
41     <EditText
42         android:id="@+id/TCMotorSearchFormCommonNameField"
43         android:layout_width="match_parent"
44         android:layout_height="wrap_content"
45         android:inputType="text"
46         android:text="" />
47
48     <TextView
49         style="@style/labelTextStyle"
50         android:layout_width="wrap_content"
51         android:layout_height="wrap_content"
52         android:text="@string/motor_diameter" />
53
54     <Spinner
55         android:id="@+id/TCMotorSearchFormDiameterField"
56         android:layout_width="match_parent"
57         android:layout_height="wrap_content"
58         android:entries="@array/TCMotorSearchDiameterList" />
59
60     <Button
61         android:id="@+id/TCMotorSearchFromSubmitButton"
62         android:layout_width="match_parent"
63         android:layout_height="wrap_content"
64         android:layout_gravity="center_horizontal"
65         android:text="@string/TCMotorSearchFormSubmit" />
66
67 </LinearLayout>