ref: 32551106495dffe0af58d34173a5c3f0c242f2c5
app/src/main/res/xml/pref_main.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="@string/pref_category_timetable"> <EditTextPreference android:defaultValue="@string/timetable_source_url" android:key="@string/key_timetable_source_url" android:summary="@string/timetable_source_url" android:title="@string/title_timetable_source_url" /> <!-- todo intent get file (import) --> <!-- todo reset source --> <SwitchPreference android:defaultValue="false" android:key="key_timetable_automatic_update" android:summary="Automatically check for and download timetable updates" android:title="Automatic updates" /> </PreferenceCategory> </PreferenceScreen> |