Grundaufbau der App
[DHBWCampusApp.git] / app / src / main / res / xml / pref_data_sync.xml
1 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
2
3     <!-- NOTE: Hide buttons to simplify the UI. Users can touch outside the dialog to
4          dismiss it. -->
5     <!-- NOTE: ListPreference's summary should be set to its value by the activity code. -->
6     <ListPreference
7         android:defaultValue="180"
8         android:entries="@array/pref_sync_frequency_titles"
9         android:entryValues="@array/pref_sync_frequency_values"
10         android:key="sync_frequency"
11         android:negativeButtonText="@null"
12         android:positiveButtonText="@null"
13         android:title="@string/pref_title_sync_frequency" />
14
15     <!-- This preference simply launches an intent when selected. Use this UI sparingly, per
16          design guidelines. -->
17     <Preference android:title="@string/pref_title_system_sync_settings">
18         <intent android:action="android.settings.SYNC_SETTINGS" />
19     </Preference>
20
21 </PreferenceScreen>