Files
app_Settings/res/xml/conversation_list_settings.xml
Julia Reynolds 8949d87be7 Add a default behavior setting for VICs
Test: atest
Bug: 149696991
Change-Id: Ica06f80a02d65294a7b503fd3556add644c61bd7
2020-02-18 09:25:52 -05:00

52 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2020 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:key="conversation_list">
<PreferenceCategory
android:title="@string/important_conversations"
android:key="important_conversations"
android:visibility="gone"
settings:allowDividerAbove="false"
settings:allowDividerBelow="true" >
<Preference
android:key="behavior"
android:summary="@string/important_conversation_behavior_summary"/>
<SwitchPreference
android:key="important_bubble"
android:title="@string/important_bubble"
android:icon="@drawable/ic_create_bubble"
settings:controller="com.android.settings.notification.app.ImportantConversationBubblePreferenceController"/>
<!-- Important conversations added here -->
<PreferenceCategory
android:key="important_conversations_list"
settings:allowDividerAbove="false"
settings:allowDividerBelow="false" >
</PreferenceCategory>
</PreferenceCategory>
<!--Other conversations added here -->
<PreferenceCategory
android:title="@string/all_conversations"
android:key="all_conversations"
settings:allowDividerAbove="true"
settings:allowDividerBelow="false" />
</PreferenceScreen>