2022-07-16 01:42:51 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<PreferenceCategory app:title="@string/search_history">
|
|
|
|
|
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:icon="@drawable/ic_history_filled"
|
|
|
|
android:summary="@string/search_history_summary"
|
|
|
|
app:key="search_history_toggle"
|
|
|
|
app:title="@string/search_history" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_trash"
|
2022-07-17 21:48:39 +05:30
|
|
|
app:key="clear_search_history"
|
2022-07-16 01:42:51 +05:30
|
|
|
app:title="@string/clear_history" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory app:title="@string/watch_history">
|
|
|
|
|
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:icon="@drawable/ic_time_outlined"
|
|
|
|
android:summary="@string/watch_history_summary"
|
|
|
|
app:key="watch_history_toggle"
|
|
|
|
app:title="@string/watch_history" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_trash"
|
|
|
|
app:key="clear_watch_history"
|
|
|
|
app:title="@string/clear_history" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory app:title="@string/watch_positions_title">
|
|
|
|
|
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:icon="@drawable/ic_play_filled"
|
|
|
|
app:key="watch_position_toggle"
|
|
|
|
app:summary="@string/watch_positions_summary"
|
|
|
|
app:title="@string/watch_positions" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_reset"
|
2022-07-29 11:51:08 +05:30
|
|
|
app:key="clear_watch_positions"
|
2022-07-18 23:06:21 +05:30
|
|
|
app:title="@string/reset_watch_positions" />
|
2022-07-16 01:42:51 +05:30
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|