2014-12-10 21:17:23 +00:00
|
|
|
<?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"
|
2014-12-14 22:30:35 +00:00
|
|
|
android:layout_height="fill_parent">
|
2014-12-15 04:21:05 +00:00
|
|
|
<ScrollView
|
2014-12-14 22:30:35 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_weight="1">
|
2014-12-15 04:21:05 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView android:id="@+id/onboot_lab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:text="Start on boot"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<CheckBox android:id="@+id/onboot"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true" />
|
|
|
|
<TextView android:id="@+id/port_lab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/onboot_lab"
|
|
|
|
android:text="Port"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<EditText android:id="@+id/port"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/onboot_lab"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="numberDecimal" />
|
|
|
|
<TextView android:id="@+is/path_lab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/port_lab"
|
|
|
|
android:text="Path to authorized_keys"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<EditText android:id="@+id/path"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/path_lab"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:singleLine="true" />
|
|
|
|
<TextView android:id="@+is/shell_lab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/path"
|
|
|
|
android:text="Login shell"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<EditText android:id="@+id/shell"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/shell_lab"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:singleLine="true" />
|
|
|
|
<TextView android:id="@+is/home_lab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/shell"
|
|
|
|
android:text="Home directory"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<EditText android:id="@+id/home"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/home_lab"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:singleLine="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</ScrollView>
|
2014-12-14 22:30:35 +00:00
|
|
|
<Button android:id="@+id/startstop"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="Start"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:onClick="starstop_clicked" />
|
2014-12-10 21:17:23 +00:00
|
|
|
</LinearLayout>
|