2012-01-03 02:20:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-02-10 02:26:09 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-07-19 14:44:39 +00:00
|
|
|
android:descendantFocusability="beforeDescendants"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:minWidth="250dp"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
style="@style/labelTextStyle"
|
|
|
|
android:layout_width="wrap_content"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-19 14:44:39 +00:00
|
|
|
android:text="@string/motor_manufacturer" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/TCMotorSearchFormManufacturerField"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:entries="@array/TCMotorSearchManufacturerList" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/labelTextStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/motor_impulseclass" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/TCMotorSearchFormImpulseField"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:entries="@array/TCMotorSearchImpulseList" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/labelTextStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/motor_commonname" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/TCMotorSearchFormCommonNameField"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="text"
|
|
|
|
android:text="" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/labelTextStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/motor_diameter" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-07-19 14:44:39 +00:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/TCMotorSearchFormDiameterField"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:entries="@array/TCMotorSearchDiameterList" />
|
2012-01-03 02:20:10 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/TCMotorSearchFromSubmitButton"
|
2012-07-19 14:44:39 +00:00
|
|
|
android:layout_width="match_parent"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-02-10 02:26:09 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:text="@string/TCMotorSearchFormSubmit" />
|
|
|
|
|
2012-02-10 02:26:09 +00:00
|
|
|
</LinearLayout>
|