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

32 lines
1.1 KiB
XML

<?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:id="@+id/server_name_field"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/server_name_field"
android:singleLine="true"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/server_uri_field"
android:id="@+id/server_uri_field"
android:layout_below="@+id/server_name_field"
android:singleLine="true"
/>
<Button
android:layout_below="@+id/server_uri_field"
android:id="@+id/server_ssh_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/server_ssh_button"
/>
</RelativeLayout>