diff options
author | Kyle Horimoto <khorimoto@gmail.com> | 2015-09-25 14:30:03 -0700 |
---|---|---|
committer | Kyle Horimoto <khorimoto@gmail.com> | 2015-09-25 14:30:03 -0700 |
commit | 0f19cf4207c5181a7abf021a1afcd9c73e6f8feb (patch) | |
tree | 45c30be3d5becd79bcaa06d1d73a611b22a34cf2 | |
parent | a9700a076d09989a5c6ae77888096e1ad5e4ffbf (diff) | |
download | connectbot-0f19cf4207c5181a7abf021a1afcd9c73e6f8feb.tar.gz connectbot-0f19cf4207c5181a7abf021a1afcd9c73e6f8feb.tar.bz2 connectbot-0f19cf4207c5181a7abf021a1afcd9c73e6f8feb.zip |
kruton comments.
-rw-r--r-- | app/src/main/res/layout/activity_edit_host.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_host_editor.xml | 48 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 3 |
3 files changed, 37 insertions, 17 deletions
diff --git a/app/src/main/res/layout/activity_edit_host.xml b/app/src/main/res/layout/activity_edit_host.xml index f2aa96c..f417b18 100644 --- a/app/src/main/res/layout/activity_edit_host.xml +++ b/app/src/main/res/layout/activity_edit_host.xml @@ -20,4 +20,5 @@ android:id="@+id/fragment_container" android:layout_width="fill_parent" android:layout_height="fill_parent" - tools:context="org.connectbot.EditHostActivity" /> + tools:context="org.connectbot.EditHostActivity" + tools:ignore="MergeRootFrame" /> diff --git a/app/src/main/res/layout/fragment_host_editor.xml b/app/src/main/res/layout/fragment_host_editor.xml index a88c1d4..20bc852 100644 --- a/app/src/main/res/layout/fragment_host_editor.xml +++ b/app/src/main/res/layout/fragment_host_editor.xml @@ -20,7 +20,8 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" - tools:context="org.connectbot.HostEditorFragment"> + tools:context="org.connectbot.HostEditorFragment" + > <LinearLayout android:layout_width="wrap_content" @@ -28,31 +29,37 @@ android:orientation="vertical" android:layout_marginStart="4dp" android:layout_marginLeft="4dp" - android:layout_marginBottom="4dp" > + android:layout_marginBottom="4dp" + > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/protocol_spinner_label" - android:textSize="12sp" /> + android:textSize="12sp" + /> <Spinner android:id="@+id/transport_selector" android:layout_width="wrap_content" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:animateLayoutChanges="true"> + android:animateLayoutChanges="true" + tools:ignore="UnusedAttribute" + > <android.support.design.widget.TextInputLayout android:id="@+id/quickconnect_field_container" android:layout_width="0dp" android:layout_weight ="1" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + > <EditText android:id="@+id/quickconnect_field" @@ -60,7 +67,8 @@ android:layout_weight="1" android:layout_height="wrap_content" android:maxLines="1" - android:inputType="text" /> + android:inputType="text" + /> </android.support.design.widget.TextInputLayout> @@ -72,7 +80,8 @@ android:layout_margin="16dp" android:src="@drawable/ic_expand_more" android:contentDescription="@string/expand" - android:background="#00000000" /> + android:background="#00000000" + /> </LinearLayout> @@ -82,13 +91,17 @@ android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginLeft="56dp" + android:layout_marginStart="56dp" android:visibility="gone" - android:animateLayoutChanges="true"> + android:animateLayoutChanges="true" + tools:ignore="UnusedAttribute" + > <android.support.design.widget.TextInputLayout android:id="@+id/username_field_container" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + > <EditText android:id="@+id/username_edit_text" @@ -96,14 +109,16 @@ android:layout_height="wrap_content" android:hint="@string/hostpref_username_title" android:maxLines="1" - android:inputType="text" /> + android:inputType="text" + /> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:id="@+id/hostname_field_container" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + > <EditText android:id="@+id/hostname_edit_text" @@ -111,14 +126,16 @@ android:layout_height="wrap_content" android:hint="@string/hostpref_hostname_title" android:maxLines="1" - android:inputType="text" /> + android:inputType="text" + /> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:id="@+id/port_field_container" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + > <EditText android:id="@+id/port_edit_text" @@ -126,7 +143,8 @@ android:layout_height="wrap_content" android:inputType="number" android:hint="@string/hostpref_port_title" - android:maxLines="1" /> + android:maxLines="1" + /> </android.support.design.widget.TextInputLayout> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index aa40906..be9518a 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -594,8 +594,9 @@ <string name="button_key_f11">F11</string> <!-- Text for the "F12" button in virtual keyboard. --> <string name="button_key_f12">F12</string> - <string name="connection_type">Connection type:</string> + <!-- Label for spinner which allows user to select SSH/Telnet/Local. --> <string name="protocol_spinner_label">Protocol</string> + <!-- Label for button which expands/collapses section. --> <string name="expand">Expand</string> </resources> |