56 lines
2.7 KiB
XML
56 lines
2.7 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/sound_settings"
|
|
android:key="@string/psk_sound_settings">
|
|
<ListPreference
|
|
android:key="@string/pk_audio_destination"
|
|
settings:controller="com.android.car.settings.sound.AudioRouteSelectorController"/>
|
|
<com.android.car.settings.common.LogicalPreferenceGroup
|
|
android:key="@string/pk_volume_settings"
|
|
settings:controller="com.android.car.settings.sound.VolumeSettingsPreferenceController"/>
|
|
<com.android.car.settings.sound.RingtonePreference
|
|
android:key="@string/pk_default_ringtone"
|
|
android:ringtoneType="ringtone"
|
|
android:title="@string/ringtone_title"
|
|
android:summary="@string/empty_placeholder"
|
|
settings:controller="com.android.car.settings.sound.RingtonePreferenceController"/>
|
|
<com.android.car.settings.sound.RingtonePreference
|
|
android:key="@string/pk_default_notification"
|
|
android:ringtoneType="notification"
|
|
android:title="@string/notification_ringtone_title"
|
|
android:summary="@string/empty_placeholder"
|
|
settings:controller="com.android.car.settings.sound.RingtonePreferenceController"/>
|
|
<com.android.car.settings.sound.RingtonePreference
|
|
android:key="@string/pk_default_alarm"
|
|
android:ringtoneType="alarm"
|
|
android:title="@string/alarm_ringtone_title"
|
|
android:summary="@string/empty_placeholder"
|
|
settings:controller="com.android.car.settings.sound.RingtonePreferenceController"/>
|
|
<com.android.car.settings.common.LogicalPreferenceGroup
|
|
android:key="@string/pk_sounds_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.sound"/>
|
|
</intent>
|
|
</com.android.car.settings.common.LogicalPreferenceGroup>
|
|
</PreferenceScreen>
|