2012-05-22 19:34:11 +00:00
|
|
|
<?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" >
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/motor_config_delay_diag_edit"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-06-18 01:47:21 +00:00
|
|
|
android:singleLine="true"
|
2012-05-22 19:34:11 +00:00
|
|
|
android:ems="10"
|
2012-06-18 01:47:21 +00:00
|
|
|
android:imeOptions="actionDone"
|
|
|
|
android:inputType="phone"
|
|
|
|
android:digits="1234567890" >
|
2012-05-22 19:34:11 +00:00
|
|
|
|
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/motor_config_delay_diag_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
</ListView>
|
|
|
|
|
|
|
|
</LinearLayout>
|