diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-04-05 15:14:58 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-04-05 16:20:06 +0200 |
commit | 9f89997e301c6c748957b410314a1b44b59b1bb6 (patch) | |
tree | 0c8d8008485ca616f2cdda97730717b1cf8f0940 /android | |
parent | 6b6d642fe56868114669bab73f00df88afeab7fb (diff) |
android: defaultValue is not the same as a hint
also flag the password field as password entry
Change-Id: I91d74335ac63ea6ddbe8df274a9b0e130fc14744
Diffstat (limited to 'android')
-rw-r--r-- | android/source/res/xml/documentprovider_preferences.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/android/source/res/xml/documentprovider_preferences.xml b/android/source/res/xml/documentprovider_preferences.xml index 4a66c6377847..bb5f087ddf71 100644 --- a/android/source/res/xml/documentprovider_preferences.xml +++ b/android/source/res/xml/documentprovider_preferences.xml @@ -13,15 +13,14 @@ android:key="pref_server_url" android:title="@string/server_url" android:summary="@string/server_url_and_port" - android:defaultValue="http://" /> + android:hint="https://server:port/" /> <EditTextPreference android:key="pref_user_name" - android:title="@string/user_name" - android:defaultValue="" /> + android:title="@string/user_name" /> <EditTextPreference android:key="pref_password" android:title="@string/password" - android:defaultValue="" /> + android:password="true" /> </PreferenceCategory> <PreferenceCategory android:title="@string/physical_storage_settings"> |