mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-03 00:43:10 +01:00
17 lines
546 B
XML
17 lines
546 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
<TextView
|
|
android:id="@+id/eo_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/eo_value"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:inputType="numberSigned">
|
|
</EditText>
|
|
</LinearLayout>
|