48 lines
2.3 KiB
XML
48 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2018 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
|
android:title="@string/display_settings"
|
|
android:key="@string/psk_display_settings">
|
|
<com.android.car.settings.common.SeekBarPreference
|
|
android:key="@string/pk_brightness_level"
|
|
android:title="@string/brightness"
|
|
settings:controller="com.android.car.settings.display.BrightnessLevelPreferenceController"
|
|
settings:showSeekBarValue="false"/>
|
|
<SwitchPreference
|
|
android:key="@string/pk_adaptive_brightness_switch"
|
|
android:summary="@string/auto_brightness_summary"
|
|
android:title="@string/auto_brightness_title"
|
|
settings:controller="com.android.car.settings.display.AdaptiveBrightnessTogglePreferenceController"/>
|
|
<com.android.car.settings.common.DividerPreference/>
|
|
<Preference
|
|
android:fragment="com.android.car.settings.datetime.DatetimeSettingsFragment"
|
|
android:key="@string/pk_date_time_settings_entry"
|
|
android:title="@string/date_and_time_settings_title"
|
|
settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
|
|
<com.android.car.settings.common.LogicalPreferenceGroup
|
|
android:key="@string/pk_display_extra_settings"
|
|
settings:controller="com.android.car.settings.common.ExtraSettingsPreferenceController">
|
|
<intent>
|
|
<extra android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.ia.display"/>
|
|
</intent>
|
|
</com.android.car.settings.common.LogicalPreferenceGroup>
|
|
</PreferenceScreen>
|