blob: e8215fe909fcc85abdde2e6f3c45c8eff69d25fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
<Preference
app:key="image_download_location"
app:title="@string/settings_image_download_location_title" />
<Preference
app:key="gif_download_location"
app:title="@string/settings_gif_download_location_title" />
<Preference
app:key="video_download_location"
app:title="@string/settings_video_download_location_title" />
<SwitchPreference
app:defaultValue="false"
app:key="separate_folder_for_each_subreddit"
app:title="@string/settings_separate_folder_for_each_subreddit" />
</PreferenceScreen>
|