ref: b8289bc2614da6b202a3eaa29daf2ed00c65594d
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="@string/key_timetable_automatic_update" android:summary="@string/summary_timetable_automatic_update" android:title="@string/title_timetable_automatic_update" /> </PreferenceCategory> </PreferenceScreen> |