pref_about.xml raw
1 <PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
2 <Preference
3 app:icon="@drawable/ic_always_on_accent"
4 app:summary="@string/app_description"
5 app:title="@string/app_name" />
6
7 <PreferenceCategory app:title="@string/about_general">
8
9 <Preference
10 app:icon="@drawable/ic_about_info"
11 app:key="app_version"
12 app:title="@string/about_app_version" />
13
14 <Preference
15 app:icon="@drawable/ic_about_github"
16 app:key="github"
17 app:title="@string/about_github" />
18
19 <Preference
20 app:icon="@drawable/ic_about_github"
21 app:key="license"
22 app:summary="@string/about_license_desc"
23 app:title="@string/about_license" />
24
25 <Preference
26 app:icon="@drawable/ic_about_contributor"
27 app:key="contributors"
28 app:summary="@string/about_contributors_desc"
29 app:title="@string/about_contributors" />
30
31 <Preference
32 app:icon="@drawable/ic_about_library"
33 app:key="libraries"
34 app:summary="@string/about_libraries_desc"
35 app:title="@string/about_libraries" />
36
37 <Preference
38 app:icon="@drawable/ic_about_palette"
39 app:key="icons"
40 app:summary="@string/about_icons_desc"
41 app:title="@string/about_icons" />
42 </PreferenceCategory>
43 </PreferenceScreen>
44