File: tcqueryform.xml

package info (click to toggle)
openrocket 12.03-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 41,220 kB
  • sloc: java: 69,764; xml: 1,400; php: 198; perl: 38; sh: 36; makefile: 18
file content (76 lines) | stat: -rw-r--r-- 2,401 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <!-- this is just here so the edittext doesn't get focus -->

    <LinearLayout
        android:layout_width="0px"
        android:layout_height="0px"
        android:focusable="true"
        android:focusableInTouchMode="true" />

    <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="1" >

        <TableRow>

            <TextView
                android:id="@+id/textView1"
                android:text="@string/motor_manufacturer" />

            <Spinner
                android:id="@+id/TCMotorSearchFormManufacturerField"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:entries="@array/TCMotorSearchManufacturerList" />
        </TableRow>

        <TableRow>

            <TextView
                android:text="@string/motor_impulseclass" />

            <Spinner
                android:id="@+id/TCMotorSearchFormImpulseField"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:entries="@array/TCMotorSearchImpulseList" />
        </TableRow>

        <TableRow>

            <TextView
                android:text="@string/motor_commonname" />

            <EditText
                android:id="@+id/TCMotorSearchFormCommonNameField"
                android:text="" />
        </TableRow>

        <TableRow>

            <TextView
                android:text="@string/motor_diameter" />

            <Spinner
                android:id="@+id/TCMotorSearchFormDiameterField"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:entries="@array/TCMotorSearchDiameterList" />
        </TableRow>
    </TableLayout>

    <Button
        android:id="@+id/TCMotorSearchFromSubmitButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="@string/TCMotorSearchFormSubmit" />

</LinearLayout>