summaryrefslogtreecommitdiff
path: root/res/xml/preferences.xml
blob: 5ccf40b5fd456b0216758f40ccdbaf611f71f019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

    <PreferenceCategory android:title="@string/prefs_general" >
        <Preference
            android:key="comics_directory"
            android:hint="@string/comics_directory_default"
            android:title="@string/prefs_comics_directory" >
        </Preference>
    </PreferenceCategory>
        	
    <PreferenceCategory android:title="@string/prefs_reading" android:key="prefs_reading">
        <CheckBoxPreference
            android:defaultValue="false"
            android:key="use_dark_theme"
            android:title="@string/prefs_dark_theme" />
        
        <CheckBoxPreference
            android:defaultValue="false"
            android:key="dim_status_bar"
            android:title="@string/prefs_dim_status_bar" />
        
        <CheckBoxPreference
            android:defaultValue="false"
            android:key="use_full_screen"
            android:title="@string/prefs_use_full_screen" />
        
	</PreferenceCategory>
</PreferenceScreen>