26 lines
818 B
XML
26 lines
818 B
XML
<?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"
|
|
android:singleLine="true"
|
|
android:ems="10"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="phone"
|
|
android:digits="1234567890" >
|
|
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
<ListView
|
|
android:id="@+id/motor_config_delay_diag_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
</ListView>
|
|
|
|
</LinearLayout> |