diff options
-rw-r--r-- | res/layout/act_hostlist.xml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/res/layout/act_hostlist.xml b/res/layout/act_hostlist.xml index 3c6f4b1..3d46068 100644 --- a/res/layout/act_hostlist.xml +++ b/res/layout/act_hostlist.xml @@ -25,8 +25,9 @@ android:layout_height="fill_parent" > - <RelativeLayout + <LinearLayout android:id="@+id/quickconnect" + android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" @@ -37,7 +38,6 @@ android:id="@+id/transport_selection" android:layout_height="wrap_content" android:layout_width="wrap_content" - android:layout_alignParentLeft="true" /> <EditText @@ -45,14 +45,12 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="username@hostname:port" - android:layout_toRightOf="@+id/transport_selection" - android:layout_alignBaseline="@+id/transport_selection" android:inputType="textEmailAddress" android:maxLines="1" android:ellipsize="end" android:focusableInTouchMode="true" android:singleLine="true"/> - </RelativeLayout> + </LinearLayout> <ListView |