-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpref_main.xml
74 lines (58 loc) · 2.68 KB
/
pref_main.xml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app2="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
app:key=""
>
<net.kdt.pojavlaunch.prefs.BackButtonPreference/>
<PreferenceCategory
android:title="@string/preference_category_main_categories"
>
<Preference
android:key="video_screen_setting"
android:title="@string/preference_video_title"
android:summary="@string/preference_video_description"
android:fragment="net.kdt.pojavlaunch.prefs.screens.LauncherPreferenceVideoFragment"
android:icon="@drawable/ic_setting_video"
/>
<Preference
android:key="control_screen_setting"
android:title="@string/preference_control_title"
android:summary="@string/preference_control_description"
android:fragment="net.kdt.pojavlaunch.prefs.screens.LauncherPreferenceControlFragment"
android:icon="@drawable/ic_menu_custom_controls"
/>
<Preference
android:key="java_screen_setting"
android:title="@string/preference_java_title"
android:summary="@string/preference_java_description"
android:fragment="net.kdt.pojavlaunch.prefs.screens.LauncherPreferenceJavaFragment"
android:icon="@drawable/ic_setting_java_runtime"
/>
<Preference
android:key="misc_screen_setting"
android:title="@string/preference_misc_title"
android:summary="@string/preference_misc_description"
android:fragment="net.kdt.pojavlaunch.prefs.screens.LauncherPreferenceMiscellaneousFragment"
android:icon="@drawable/ic_setting_misc"
/>
<Preference
android:key="experimental_screen_setting"
android:title="@string/preference_experimental_title"
android:summary="@string/preference_experimental_description"
android:fragment="net.kdt.pojavlaunch.prefs.screens.LauncherPreferenceExperimentalFragment"
/>
</PreferenceCategory>
<SwitchPreference
android:title="@string/preference_force_english_title"
android:key="force_english"
android:summary="@string/preference_force_english_description"
/>
<Preference
android:title="@string/preference_ask_for_notification_title"
android:summary="@string/preference_ask_for_notification_description"
android:key="notification_permission_request"
/>
</PreferenceScreen>