123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!--
- This file is part of Zandy.
-
- Zandy is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- Zandy is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with Zandy. If not, see <http://www.gnu.org/licenses/>.
- -->
- <PreferenceScreen
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:title="Settings">
- <PreferenceCategory android:title="@string/settings_basic"
- android:summary="">
- <CheckBoxPreference
- android:key="sync_aggressively"
- android:title="@string/settings_aggressive_syncing"
- android:summary="@string/settings_aggressive_syncing_desc" />
- <EditTextPreference
- android:key="user_id"
- android:title="@string/settings_user_id"
- android:summary="@string/settings_user_id_desc"
- android:numeric="integer" />
- <EditTextPreference
- android:key="user_key"
- android:title="@string/settings_api_key"
- android:summary="@string/settings_api_key_desc" />
- </PreferenceCategory>
- <PreferenceCategory android:title="@string/settings_webdav"
- android:summary="">
- <CheckBoxPreference
- android:key="webdav_enabled"
- android:title="@string/settings_webdav_enabled"
- android:summary="@string/settings_webdav_enabled_desc" />
- <EditTextPreference
- android:key="webdav_path"
- android:title="@string/settings_webdav_path"
- android:summary="@string/settings_webdav_path_desc"
- android:inputType="textUri" />
-
- <EditTextPreference
- android:key="webdav_username"
- android:title="@string/settings_webdav_username"
- android:summary="@string/settings_webdav_username_desc" />
-
- <EditTextPreference
- android:key="webdav_password"
- android:title="@string/settings_webdav_password"
- android:summary="@string/settings_webdav_password_desc"
- android:password="true" />
- </PreferenceCategory>
- </PreferenceScreen>
|