2 ~ Copyright © 2019 Damyan Ivanov.
3 ~ This file is part of MoLe.
4 ~ MoLe is free software: you can distribute it and/or modify it
5 ~ under the term of the GNU General Public License as published by
6 ~ the Free Software Foundation, either version 3 of the License, or
7 ~ (at your opinion), any later version.
9 ~ MoLe is distributed in the hope that it will be useful,
10 ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ~ GNU General Public License terms for details.
14 ~ You should have received a copy of the GNU General Public License
15 ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
18 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
20 <!-- NOTE: Hide buttons to simplify the UI. Users can touch outside the dialog to
22 <!-- NOTE: ListPreference's summary should be set to its value by the activity code. -->
24 android:defaultValue="180"
25 android:entries="@array/pref_sync_frequency_titles"
26 android:entryValues="@array/pref_sync_frequency_values"
27 android:key="sync_frequency"
28 android:negativeButtonText="@null"
29 android:positiveButtonText="@null"
30 android:title="@string/pref_title_sync_frequency" />
32 <!-- This preference simply launches an intent when selected. Use this UI sparingly, per
33 design guidelines. -->
34 <Preference android:title="@string/pref_title_system_sync_settings">
35 <intent android:action="android.settings.SYNC_SETTINGS" />