tytd-mobile/TYTD.Mobile/Resources/layout/edit_ssh_server.xml

56 lines
1.7 KiB
XML
Raw Normal View History

2022-10-04 10:44:09 +00:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ssh_uri"
android:id="@+id/ssh_uri"
android:singleLine="true"
/>
<EditText
android:id="@+id/ssh_port"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ssh_port"
android:inputType="number"
android:singleLine="true"
android:layout_below="@+id/ssh_uri"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ssh_username"
android:id="@+id/ssh_username"
android:layout_below="@+id/ssh_port"
android:singleLine="true"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ssh_password"
android:id="@+id/ssh_password"
android:layout_below="@+id/ssh_username"
android:singleLine="true"
android:password="true"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ssh_path"
android:id="@+id/ssh_path"
android:layout_below="@+id/ssh_password"
android:singleLine="true"
/>
</RelativeLayout>