mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-24 11:52:35 +01:00
45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp">
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:paddingRight="10dp"
|
|
android:text="@string/host_name">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/network_engine_host"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:inputType="text">
|
|
</EditText>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp">
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:paddingRight="10dp"
|
|
android:text="@string/network_port">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/network_engine_port"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:inputType="number">
|
|
</EditText>
|
|
</LinearLayout>
|
|
</LinearLayout>
|