2012-01-03 02:20:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-02-23 17:33:15 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<TableLayout
|
|
|
|
android:id="@+id/motorDetailForm"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/black"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="10dp" >
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_manufacturer" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsManufacturer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="text" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_commonname" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="text" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_delays" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsDelays"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="number" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_caseinfo" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsCaseInfo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="text" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_impulseclass" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsImpuseClass"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="text" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_diameter" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsDiameter"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="text" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingRight="10dp"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/motor_length" />
|
2012-02-06 01:31:51 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motorDetailsLength"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.04"
|
|
|
|
android:editable="false"
|
|
|
|
android:inputType="text" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
<!--
|
|
|
|
<Button
|
|
|
|
android:id="@+id/motorDetailsSaveButton"
|
|
|
|
android:layout_width="wrap_content"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-02-06 01:31:51 +00:00
|
|
|
android:text="@string/save" />
|
|
|
|
-->
|
2012-01-03 02:20:10 +00:00
|
|
|
|
2012-02-06 01:31:51 +00:00
|
|
|
</ScrollView>
|