23 lines
706 B
XML
23 lines
706 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:ems="10"
|
||
|
android:inputType="number" >
|
||
|
|
||
|
<requestFocus />
|
||
|
</EditText>
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/motor_config_delay_diag_list"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" >
|
||
|
</ListView>
|
||
|
|
||
|
</LinearLayout>
|