aboutsummaryrefslogtreecommitdiffstats
path: root/example/src/main/res/xml/base_preference.xml
blob: cd214f49a58ecdbaf68df6ac41384464b41bc7c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceCategory android:title="OpenPGP API">
        <org.openintents.openpgp.util.OpenPgpAppPreference
            android:key="openpgp_provider_list"
            android:title="Select OpenPGP app!" />
        <org.openintents.openpgp.util.OpenPgpKeyPreference
            android:key="openpgp_key"
            android:title="Select key!" />
        <Preference
            android:key="openpgp_provider_demo"
            android:title="OpenPGP API Example" />
    </PreferenceCategory>

</PreferenceScreen>