feat: SettingsLib验证通过-使用App module启用
This commit is contained in:
47
CarSettings/res/xml/text_to_speech_output_fragment.xml
Normal file
47
CarSettings/res/xml/text_to_speech_output_fragment.xml
Normal file
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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/text_to_speech_settings"
|
||||
android:key="@string/psk_text_to_speech_output">
|
||||
<com.android.car.ui.preference.CarUiTwoActionIconPreference
|
||||
android:fragment="com.android.car.settings.tts.PreferredEngineFragment"
|
||||
android:key="@string/pk_tts_preferred_engine_entry"
|
||||
android:title="@string/text_to_speech_preferred_engine_settings"
|
||||
settings:controller="com.android.car.settings.tts.PreferredEngineEntryPreferenceController"
|
||||
settings:secondaryActionIcon="@drawable/ic_settings_gear"/>
|
||||
<com.android.car.settings.common.LogicalPreferenceGroup
|
||||
android:key="@string/pk_tts_playback_group"
|
||||
settings:controller="com.android.car.settings.tts.TtsPlaybackPreferenceController">
|
||||
<!-- Currently disabled in TtsPlaybackPreferenceController -->
|
||||
<ListPreference
|
||||
android:key="@string/pk_tts_default_language"
|
||||
android:persistent="false"
|
||||
android:summary="@string/tts_default_lang_summary"
|
||||
android:title="@string/tts_default_lang_title"/>
|
||||
<com.android.car.settings.common.SeekBarPreference
|
||||
android:key="@string/pk_tts_speech_rate"
|
||||
android:title="@string/tts_speech_rate"/>
|
||||
<com.android.car.settings.common.SeekBarPreference
|
||||
android:key="@string/pk_tts_pitch"
|
||||
android:title="@string/tts_pitch"/>
|
||||
<com.android.car.ui.preference.CarUiPreference
|
||||
android:key="@string/pk_tts_reset"
|
||||
android:title="@string/tts_reset"
|
||||
settings:showChevron="false"/>
|
||||
</com.android.car.settings.common.LogicalPreferenceGroup>
|
||||
</PreferenceScreen>
|
||||
Reference in New Issue
Block a user