Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2011 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
     18 
     19     <PreferenceCategory android:key="sim_lock"
     20             android:title="@string/sim_lock_settings_title"
     21             android:persistent="false">
     22 
     23         <Preference android:title="@string/sim_lock_settings_category"
     24                 android:persistent="false">
     25             <intent android:action="android.intent.action.MAIN"
     26                      android:targetPackage="com.android.settings"
     27                      android:targetClass="com.android.settings.IccLockSettings"/>
     28         </Preference>
     29     </PreferenceCategory>
     30 
     31     <PreferenceCategory android:title="@string/security_passwords_title"
     32             android:persistent="false">
     33 
     34         <CheckBoxPreference android:key="show_password"
     35                 android:title="@string/show_password"
     36                 android:persistent="false"/>
     37     </PreferenceCategory>
     38 
     39     <PreferenceCategory android:key="device_admin_category"
     40             android:title="@string/device_admin_title"
     41             android:persistent="false">
     42 
     43         <Preference android:title="@string/manage_device_admin"
     44                 android:summary="@string/manage_device_admin_summary"
     45                 android:persistent="false"
     46                 android:fragment="com.android.settings.DeviceAdminSettings"/>
     47 
     48         <CheckBoxPreference
     49                 android:key="toggle_install_applications"
     50                 android:title="@string/install_applications"
     51                 android:summaryOff="@string/install_unknown_applications"
     52                 android:summaryOn="@string/install_unknown_applications"
     53                 android:persistent="false" />
     54 
     55         <CheckBoxPreference
     56                 android:key="toggle_verify_applications"
     57                 android:title="@string/verify_applications"
     58                 android:summaryOff="@string/verify_applications_summary"
     59                 android:summaryOn="@string/verify_applications_summary"
     60                 android:persistent="false" />
     61 
     62         <Preference
     63                 android:key="manage_notification_access"
     64                 android:title="@string/manage_notification_access"
     65                 android:persistent="false"
     66                 android:fragment="com.android.settings.NotificationAccessSettings"/>
     67 
     68     </PreferenceCategory>
     69 
     70     <PreferenceCategory android:key="credentials_management"
     71             android:title="@string/credentials_title"
     72             android:persistent="false">
     73         <Preference android:key="credential_storage_type"
     74                 android:title="@string/credential_storage_type"
     75                 style="?android:attr/preferenceInformationStyle"
     76                 android:persistent="false" />
     77 
     78         <Preference android:title="@string/trusted_credentials"
     79                 android:summary="@string/trusted_credentials_summary"
     80                 android:persistent="false"
     81                 android:fragment="com.android.settings.TrustedCredentialsSettings"/>
     82 
     83         <Preference android:title="@string/credentials_install"
     84                 android:summary="@string/credentials_install_summary"
     85                 android:persistent="false">
     86             <intent android:action="android.credentials.INSTALL"
     87                     android:targetPackage="com.android.certinstaller"
     88                     android:targetClass="com.android.certinstaller.CertInstallerMain"/>
     89         </Preference>
     90 
     91         <Preference android:key="reset_credentials"
     92                 android:title="@string/credentials_reset"
     93                 android:summary="@string/credentials_reset_summary"
     94                 android:persistent="false">
     95             <intent android:action="com.android.credentials.RESET"
     96                     android:targetPackage="com.android.settings"
     97                     android:targetClass="com.android.settings.CredentialStorage"/>
     98         </Preference>
     99     </PreferenceCategory>
    100 </PreferenceScreen>
    101