Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   Copyright (C) 2016 The Android Open Source Project
      4 
      5   Licensed under the Apache License, Version 2.0 (the "License");
      6   you may not use this file except in compliance with the License.
      7   You may obtain a copy of the License at
      8 
      9        http://www.apache.org/licenses/LICENSE-2.0
     10 
     11   Unless required by applicable law or agreed to in writing, software
     12   distributed under the License is distributed on an "AS IS" BASIS,
     13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14   See the License for the specific language governing permissions and
     15   limitations under the License.
     16   -->
     17 
     18 <PreferenceScreen
     19     xmlns:android="http://schemas.android.com/apk/res/android"
     20     xmlns:app="http://schemas.android.com/apk/res-auto"
     21     android:key="installed_app_detail_settings_screen"
     22     app:initialExpandedChildrenCount="6">
     23 
     24     <com.android.settings.applications.LayoutPreference
     25         android:key="header_view"
     26         android:layout="@layout/settings_entity_header"
     27         android:selectable="false"
     28         android:order="-10000"/>
     29 
     30     <com.android.settings.applications.LayoutPreference
     31         android:key="instant_app_buttons"
     32         android:layout="@layout/instant_app_buttons"
     33         android:selectable="false"
     34         android:order="-9999"/>
     35 
     36     <com.android.settings.widget.ActionButtonPreference
     37         android:key="action_buttons"
     38         android:order="-9998" />
     39 
     40     <Preference
     41         android:key="notification_settings"
     42         android:title="@string/notifications_label"
     43         android:selectable="true"/>
     44 
     45     <com.android.settings.widget.FixedLineSummaryPreference
     46         android:key="permission_settings"
     47         android:title="@string/permissions_label"
     48         android:summary="@string/summary_placeholder"
     49         android:selectable="true"
     50         app:summaryLineCount="1" />
     51 
     52     <Preference
     53         android:key="storage_settings"
     54         android:title="@string/storage_settings"
     55         android:summary="@string/summary_placeholder"
     56         android:selectable="true"/>
     57 
     58     <com.android.settings.applications.AppDomainsPreference
     59         android:key="instant_app_launch_supported_domain_urls"
     60         android:title="@string/app_launch_supported_domain_urls_title"
     61         android:selectable="true" />
     62 
     63     <Preference
     64         android:key="data_settings"
     65         android:title="@string/data_usage_summary_title"
     66         android:summary="@string/summary_placeholder"
     67         android:selectable="true"/>
     68 
     69     <Preference
     70         android:key="battery"
     71         android:title="@string/power_usage_summary_title"
     72         android:summary="@string/summary_placeholder"
     73         android:selectable="true"/>
     74 
     75     <Preference
     76         android:key="preferred_settings"
     77         android:title="@string/launch_by_default"
     78         android:summary="@string/summary_placeholder"
     79         android:selectable="true"/>
     80 
     81     <Preference
     82         android:key="memory"
     83         android:title="@string/memory_settings_title"
     84         android:summary="@string/summary_placeholder"
     85         android:enabled="false"
     86         android:selectable="true"/>
     87 
     88     <Preference
     89         android:key="app_version"
     90         android:selectable="false"
     91         android:order="9999"/>
     92 
     93 </PreferenceScreen>