create changelog entry
[debian/openrocket] / android / res / layout / motor_detail_form.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent" >
5
6     <TableLayout
7         android:id="@+id/motorDetailForm"
8         android:layout_width="match_parent"
9         android:layout_height="wrap_content"
10         android:background="@android:color/black"
11         android:orientation="vertical"
12         android:paddingTop="10dp" >
13
14         <TableRow>
15
16             <TextView
17                 android:paddingRight="10dp"
18                 android:text="@string/motor_manufacturer" />
19
20             <EditText
21                 android:id="@+id/motorDetailsManufacturer"
22                 android:layout_width="match_parent"
23                 android:layout_height="wrap_content"
24                 android:layout_weight="0.04"
25                 android:editable="false"
26                 android:inputType="text" />
27         </TableRow>
28
29         <TableRow>
30
31             <TextView
32                 android:paddingRight="10dp"
33                 android:text="@string/motor_commonname" />
34
35             <EditText
36                 android:id="@+id/motorDetailsName"
37                 android:layout_width="match_parent"
38                 android:layout_height="wrap_content"
39                 android:layout_weight="0.04"
40                 android:editable="false"
41                 android:inputType="text" />
42         </TableRow>
43
44         <TableRow>
45
46             <TextView
47                 android:paddingRight="10dp"
48                 android:text="@string/motor_delays" />
49
50             <EditText
51                 android:id="@+id/motorDetailsDelays"
52                 android:layout_width="match_parent"
53                 android:layout_height="wrap_content"
54                 android:layout_weight="0.04"
55                 android:editable="false"
56                 android:inputType="number" />
57         </TableRow>
58
59         <TableRow>
60
61             <TextView
62                 android:paddingRight="10dp"
63                 android:text="@string/motor_caseinfo" />
64
65             <EditText
66                 android:id="@+id/motorDetailsCaseInfo"
67                 android:layout_width="match_parent"
68                 android:layout_height="wrap_content"
69                 android:layout_weight="0.04"
70                 android:editable="false"
71                 android:inputType="text" />
72         </TableRow>
73
74         <TableRow>
75
76             <TextView
77                 android:paddingRight="10dp"
78                 android:text="@string/motor_impulseclass" />
79
80             <EditText
81                 android:id="@+id/motorDetailsImpuseClass"
82                 android:layout_width="match_parent"
83                 android:layout_height="wrap_content"
84                 android:layout_weight="0.04"
85                 android:editable="false"
86                 android:inputType="text" />
87         </TableRow>
88
89         <TableRow>
90
91             <TextView
92                 android:paddingRight="10dp"
93                 android:text="@string/motor_diameter" />
94
95             <EditText
96                 android:id="@+id/motorDetailsDiameter"
97                 android:layout_width="match_parent"
98                 android:layout_height="wrap_content"
99                 android:layout_weight="0.04"
100                 android:editable="false"
101                 android:inputType="text" />
102         </TableRow>
103
104         <TableRow>
105
106             <TextView
107                 android:paddingRight="10dp"
108                 android:text="@string/motor_length" />
109
110             <EditText
111                 android:id="@+id/motorDetailsLength"
112                 android:layout_width="match_parent"
113                 android:layout_height="wrap_content"
114                 android:layout_weight="0.04"
115                 android:editable="false"
116                 android:inputType="text" />
117         </TableRow>
118     </TableLayout>
119     <!--
120         <Button
121             android:id="@+id/motorDetailsSaveButton"
122             android:layout_width="wrap_content"
123             android:layout_height="wrap_content"
124             android:text="@string/save" />
125     -->
126
127 </ScrollView>