1<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2016, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10**     http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<!-- Resource overrides for car system ui. -->
21<resources>
22
23    <!-- Notifications on the car should not show the gear icon. Swiping should only dismiss the
24         cards. -->
25    <bool name="config_showNotificationGear">false</bool>
26
27    <!-- No need to draw a background around a notification because there is no gear icon. -->
28    <bool name="config_drawNotificationBackground">false</bool>
29
30    <!-- The notification shade should only be shown on a facet click and not by dragging. -->
31    <bool name="config_enableNotificationShadeDrag">false</bool>
32
33    <!-- There should not be the ability to clear all notifications with a button. -->
34    <bool name="config_enableNotificationsClearAll">false</bool>
35
36    <!-- Hide the notification shelf so that the cards in the notification center scroll smoothly
37         off-screen. -->
38    <bool name="config_showNotificationShelf">false</bool>
39
40    <!-- The notifications should always fade when being dismissed. -->
41    <bool name="config_fadeNotificationsOnDismiss">true</bool>
42
43    <!-- The entire notification row should be translated because the cards are smaller than the
44         width of the screen. If the row is not translated, then they will be clipped. -->
45    <bool name="config_translateNotificationContentsOnSwipe">false</bool>
46
47    <!-- The notifications should fade as they are being swiped off screen. -->
48    <bool name="config_fadeDependingOnAmountSwiped">true</bool>
49
50     <!-- The expand icon should be displayed at the top right corner of the notifications. -->
51    <bool name="config_showNotificationExpandButtonAtEnd">true</bool>
52
53    <!-- A notification card that has been scrolled off screen should not be clipped in height. This
54         maintains the illusion that the cards are being scrolled underneath the status bar
55         shelf. -->
56    <bool name="config_clipNotificationScrollToTop">false</bool>
57
58    <!-- The auto notification have rounded corners. Ensure that any content is clipped to these
59         corners. -->
60    <bool name="config_clipNotificationsToOutline">true</bool>
61
62    <!-- Notifications should always be in their expanded state so that the actions are visible.
63         This will make it easier for a auto user to interact with them. -->
64    <bool name="config_alwaysExpandNonGroupedNotifications">true</bool>
65
66    <!-- Auto does not allow notifications to be toggled to and from their expanded states to
67         reduce driver distraction. -->
68    <bool name="config_enableNonGroupedNotificationExpand">false</bool>
69
70    <!-- There should always be a dividing line between notifications. -->
71    <bool name="config_showDividersWhenGroupNotificationExpanded">true</bool>
72
73    <!--- Hide the dividing lines when the notification group is expanding. -->
74    <bool name="config_hideDividersDuringTransition">true</bool>
75
76    <!-- Child notifications are displayed with no dividing space between them in auto, so disable
77         the shadow. -->
78    <bool name="config_enableShadowOnChildNotifications">false</bool>
79
80    <!-- Keep the notification background when the container has been expanded. The children will
81         expand inline within the container, so it can keep its original background. -->
82    <bool name="config_showGroupNotificationBgWhenExpanded">true</bool>
83</resources>
84