Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2008 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         android:title="@string/applications_settings_header"
     19         android:summary="@string/applications_settings_summary"
     20         android:key="applications_settings">
     21 
     22     <CheckBoxPreference
     23             android:key="toggle_install_applications"
     24             android:title="@string/install_applications"
     25             android:summaryOff="@string/install_unknown_applications"
     26             android:summaryOn="@string/install_unknown_applications"
     27             android:persistent="false" />
     28 
     29     <ListPreference
     30         android:key="app_install_location"
     31         android:title="@string/app_install_location_title"
     32         android:summary="@string/app_install_location_summary"
     33         android:persistent="false"
     34         android:entries="@array/app_install_location_entries"
     35         android:entryValues="@array/app_install_location_values"/>
     36 
     37     <PreferenceScreen
     38             android:key="quick_launch"
     39             android:title="@string/quick_launch_title"
     40             android:summary="@string/quick_launch_summary">
     41         <intent android:action="android.intent.action.MAIN"
     42                 android:targetPackage="com.android.settings"
     43                 android:targetClass="com.android.settings.quicklaunch.QuickLaunchSettings" />
     44     </PreferenceScreen>
     45         
     46     <PreferenceScreen
     47             android:title="@string/manageapplications_settings_title"
     48             android:summary="@string/manageapplications_settings_summary">
     49         <intent android:action="android.intent.action.MAIN"
     50                 android:targetPackage="com.android.settings"
     51                 android:targetClass="com.android.settings.ManageApplications" />
     52     </PreferenceScreen>
     53 
     54     <PreferenceScreen
     55             android:title="@string/runningservices_settings_title"
     56             android:summary="@string/runningservices_settings_summary">
     57         <intent android:action="android.intent.action.MAIN"
     58                 android:targetPackage="com.android.settings"
     59                 android:targetClass="com.android.settings.RunningServices" />
     60     </PreferenceScreen>
     61 
     62     <PreferenceScreen 
     63             android:title="@string/development_settings_title" 
     64             android:summary="@string/development_settings_summary">
     65         <intent android:action="android.intent.action.MAIN"
     66                 android:targetPackage="com.android.settings"
     67                 android:targetClass="com.android.settings.DevelopmentSettings" />
     68     </PreferenceScreen>
     69     
     70 </PreferenceScreen>
     71 
     72