forked from amazingfate/loongoffice
Creates an activity to manage the settings of any document provider that needs them, and populated it with the settings required by the ownCloud implementation. The settings screen is not yet plugged to the document browser UI but can be launched with this command: adb shell am start -a android.intent.action.MAIN \ -n org.libreoffice/.storage.DocumentProviderSettingsActivity Change-Id: I83cff641fa61078f2bddbb98262af989c06985a9 Reviewed-on: https://gerrit.libreoffice.org/16193 Reviewed-by: Jacobo Aragunde Pérez <jaragunde@igalia.com> Tested-by: Jacobo Aragunde Pérez <jaragunde@igalia.com>
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
This file is part of the LibreOffice project.
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
-->
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<PreferenceCategory
|
|
android:title="@string/owncloud_settings"
|
|
android:key="pref_key_owncloud_settings">
|
|
<EditTextPreference
|
|
android:key="pref_server_url"
|
|
android:title="@string/server_url"
|
|
android:summary="@string/server_url_and_port"
|
|
android:defaultValue="http://" />
|
|
<EditTextPreference
|
|
android:key="pref_user_name"
|
|
android:title="@string/user_name"
|
|
android:defaultValue="" />
|
|
<EditTextPreference
|
|
android:key="pref_password"
|
|
android:title="@string/password"
|
|
android:defaultValue="" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|