0
0
mirror of https://github.com/etesync/android.git synced 2024-09-20 13:08:51 +02:00

Make server URL, user name and password horizontally scrollable (fixes

#241)
This commit is contained in:
rfc2822 2014-05-08 15:57:43 +02:00
parent 624f33c746
commit ec94fe61fd

View File

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" >
android:layout_height="fill_parent" >
<GridLayout
android:layout_width="fill_parent"
@ -30,6 +29,8 @@
android:hint="myserver/dav/"
android:inputType="textUri"
android:layout_width="0dp"
android:scrollHorizontally="true"
android:scrollbars="horizontal"
android:text="" />
<TextView
@ -51,6 +52,9 @@
android:id="@+id/userName"
android:layout_gravity="fill_horizontal"
android:inputType="textNoSuggestions|textEmailAddress"
android:layout_width="0dp"
android:scrollHorizontally="true"
android:scrollbars="horizontal"
android:text="" />
<TextView
@ -61,6 +65,9 @@
android:id="@+id/password"
android:layout_gravity="fill_horizontal"
android:inputType="textPassword"
android:layout_width="0dp"
android:scrollHorizontally="true"
android:scrollbars="horizontal"
android:text="" />
<CheckBox