1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** Copyright 2009, 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<!-- These resources are around just to allow their values to be customized 21 for different hardware and product builds. --> 22<resources> 23 <!-- Whether to clip notification contents with a rounded rectangle. Might be expensive on 24 certain GPU's and thus can be turned off with only minimal visual impact. --> 25 <bool name="config_notifications_round_rect_clipping">true</bool> 26 27 <!-- Control whether status bar should distinguish HSPA data icon form UMTS 28 data icon on devices --> 29 <bool name="config_hspa_data_distinguishable">false</bool> 30 31 <!-- Component to be used as the status bar service. Must implement the IStatusBar 32 interface. This name is in the ComponentName flattened format (package/class) --> 33 <string name="config_statusBarComponent" translatable="false">com.android.systemui.statusbar.phone.StatusBar</string> 34 35 <!-- Component to be used as the recents implementation. Must implement the 36 RecentsImplementation interface. This name is in the ComponentName flattened format 37 (package/class) --> 38 <string name="config_recentsComponent" translatable="false">com.android.systemui.recents.OverviewProxyRecentsImpl</string> 39 40 <!-- Whether or not we show the number in the bar. --> 41 <bool name="config_statusBarShowNumber">false</bool> 42 43 <!-- For how long the lock screen can be on before the display turns off. --> 44 <integer name="config_lockScreenDisplayTimeout">10000</integer> 45 46 <!-- Vibrator pattern for camera gesture launch. --> 47 <integer-array translatable="false" name="config_cameraLaunchGestureVibePattern"> 48 <item>0</item> 49 <item>400</item> 50 </integer-array> 51 52 <!-- How many icons may be shown at once in the system bar. Includes any 53 slots that may be reused for things like IME control. --> 54 <integer name="config_maxNotificationIcons">5</integer> 55 56 <!-- Show phone (voice) signal strength instead of data in mobile RSSI. --> 57 <bool name="config_showPhoneRSSIForData">false</bool> 58 59 <!-- When true, show 1/2G networks as 3G. --> 60 <bool name="config_showMin3G">false</bool> 61 62 <!-- Show rotation lock toggle in System UI--> 63 <bool name="config_showRotationLock">true</bool> 64 65 <!-- Vibration duration for GlowPadView used in SearchPanelView --> 66 <integer translatable="false" name="config_vibration_duration">0</integer> 67 68 <!-- Vibration duration for GlowPadView used in SearchPanelView --> 69 <integer translatable="false" name="config_search_panel_view_vibration_duration">20</integer> 70 71 <!-- Show mic or phone affordance on Keyguard --> 72 <bool name="config_keyguardShowLeftAffordance">false</bool> 73 74 <!-- Show camera affordance on Keyguard --> 75 <bool name="config_keyguardShowCameraAffordance">false</bool> 76 77 <!-- The length of the vibration when the notification pops open. --> 78 <integer name="one_finger_pop_duration_ms">10</integer> 79 80 <!-- decay duration (from size_max -> size), in ms --> 81 <integer name="navigation_bar_deadzone_hold">333</integer> 82 <integer name="navigation_bar_deadzone_decay">333</integer> 83 84 <!-- orientation of the dead zone when touches have recently occurred elsewhere on screen --> 85 <integer name="navigation_bar_deadzone_orientation">0</integer> 86 87 <bool name="config_dead_zone_flash">false</bool> 88 89 <!-- Whether to enable dimming navigation buttons when wallpaper is not visible, should be 90 enabled for OLED devices to reduce/prevent burn in on the navigation bar (because of the 91 black background and static button placements) and disabled for all other devices to 92 prevent wasting cpu cycles on the dimming animation --> 93 <bool name="config_navigation_bar_enable_auto_dim_no_visible_wallpaper">true</bool> 94 95 <!-- The maximum number of tiles in the QuickQSPanel --> 96 <integer name="quick_qs_panel_max_columns">6</integer> 97 98 <!-- The number of columns in the QuickSettings --> 99 <integer name="quick_settings_num_columns">3</integer> 100 101 <!-- The number of rows in the QuickSettings --> 102 <integer name="quick_settings_max_rows">3</integer> 103 104 <!-- The number of columns that the top level tiles span in the QuickSettings --> 105 <integer name="quick_settings_user_time_settings_tile_span">1</integer> 106 107 <!-- The default tiles to display in QuickSettings --> 108 <string name="quick_settings_tiles_default" translatable="false"> 109 wifi,bt,dnd,flashlight,rotation,battery,cell,airplane,cast,screenrecord 110 </string> 111 112 <!-- The minimum number of tiles to display in QuickSettings --> 113 <integer name="quick_settings_min_num_tiles">6</integer> 114 115 <!-- Tiles native to System UI. Order should match "quick_settings_tiles_default" --> 116 <string name="quick_settings_tiles_stock" translatable="false"> 117 wifi,cell,battery,dnd,flashlight,rotation,bt,airplane,location,hotspot,inversion,saver,dark,work,cast,night,screenrecord,reverse 118 </string> 119 120 <!-- The tiles to display in QuickSettings --> 121 <string name="quick_settings_tiles" translatable="false">default</string> 122 123 <!-- The tiles to display in QuickSettings in retail mode --> 124 <string name="quick_settings_tiles_retail_mode" translatable="false"> 125 night,dark,dnd,flashlight,rotation,location 126 </string> 127 128 <!-- Tiles to auto add to Quick Settings upon first change of a given secure setting. 129 The syntax is setting-name:spec. If the tile is a TileService, the spec should be specified 130 as custom(package/class). Relative class name is supported. --> 131 <string-array name="config_quickSettingsAutoAdd" translatable="false"> 132 <item>accessibility_display_inversion_enabled:inversion</item> 133 </string-array> 134 135 <!-- Whether or not the RSSI tile is capitalized or not. --> 136 <bool name="quick_settings_rssi_tile_capitalization">true</bool> 137 138 <!-- Timeouts for brightness dialog to disappear --> 139 <integer name="quick_settings_brightness_dialog_short_timeout">2000</integer> 140 <integer name="quick_settings_brightness_dialog_long_timeout">4000</integer> 141 142 <!-- Show indicator for Wifi on but not connected. --> 143 <bool name="config_showWifiIndicatorWhenEnabled">false</bool> 144 145 <!-- The number of milliseconds before the heads up notification auto-dismisses. --> 146 <integer name="heads_up_notification_decay">5000</integer> 147 148 <!-- The number of milliseconds before the heads up notification sent automatically by the system auto-dismisses. --> 149 <integer name="auto_heads_up_notification_decay">3000</integer> 150 151 <!-- The number of milliseconds after a heads up notification is pushed back 152 before the app can interrupt again. --> 153 <integer name="heads_up_default_snooze_length_ms">60000</integer> 154 155 <!-- Minimum display time for a heads up notification, in milliseconds. --> 156 <integer name="heads_up_notification_minimum_time">2000</integer> 157 158 <!-- The number of milliseconds before the heads up notification accepts touches. --> 159 <integer name="touch_acceptance_delay">700</integer> 160 161 <!-- The number of milliseconds to extend ambient pulse by when prompted (e.g. on touch) --> 162 <integer name="ambient_notification_extension_time">10000</integer> 163 164 <!-- In multi-window, determines whether the stack where recents lives should grow from 165 the smallest position when being launched. --> 166 <bool name="recents_grow_in_multiwindow">true</bool> 167 168 <!-- Animation duration when using long press on recents to dock --> 169 <integer name="long_press_dock_anim_duration">250</integer> 170 171 <!-- Whether to enable KeyguardService or not --> 172 <bool name="config_enableKeyguardService">true</bool> 173 174 <!-- The maximum count of notifications on Keyguard. The rest will be collapsed in an overflow 175 card. --> 176 <integer name="keyguard_max_notification_count">3</integer> 177 178 <!-- Defines the implementation of the velocity tracker to be used for the panel expansion. Can 179 be 'platform' or 'noisy' (i.e. for noisy touch screens). --> 180 <string name="velocity_tracker_impl" translatable="false">platform</string> 181 182 <!-- Doze: does this device support STATE_DOZE? --> 183 <bool name="doze_display_state_supported">false</bool> 184 185 <!-- Doze: does this device support STATE_DOZE_SUSPEND? --> 186 <bool name="doze_suspend_display_state_supported">false</bool> 187 188 <!-- Doze: should the significant motion sensor be used as a pulse signal? --> 189 <bool name="doze_pulse_on_significant_motion">false</bool> 190 191 <!-- Doze: check proximity sensor before pulsing? --> 192 <bool name="doze_proximity_check_before_pulse">true</bool> 193 194 <!-- Doze: should notifications be used as a pulse signal? --> 195 <bool name="doze_pulse_on_notifications">true</bool> 196 197 <!-- Doze: duration to avoid false pickup gestures triggered by notification vibrations --> 198 <integer name="doze_pickup_vibration_threshold">2000</integer> 199 200 <!-- Type of a sensor that provides a low-power estimate of the desired display 201 brightness, suitable to listen to while the device is asleep (e.g. during 202 always-on display) --> 203 <string name="doze_brightness_sensor_type" translatable="false"></string> 204 205 <!-- Override value to use for proximity sensor. --> 206 <string name="proximity_sensor_type" translatable="false"></string> 207 208 <!-- If using proximity_sensor_type, specifies a threshold value to distinguish near and 209 far break points. A sensor value less than this is considered "near". --> 210 <item name="proximity_sensor_threshold" translatable="false" format="float" type="dimen"></item> 211 212 <!-- Doze: pulse parameter - how long does it take to fade in? --> 213 <integer name="doze_pulse_duration_in">130</integer> 214 215 <!-- Doze: pulse parameter - once faded in, how long does it stay visible? --> 216 <integer name="doze_pulse_duration_visible">6000</integer> 217 218 <!-- Doze: pulse parameter - how long does it take to fade out? --> 219 <integer name="doze_pulse_duration_out">600</integer> 220 221 <!-- Doze: alpha to apply to small icons when dozing --> 222 <integer name="doze_small_icon_alpha">222</integer><!-- 87% of 0xff --> 223 224 <!-- Doze: Table that translates sensor values from the doze_brightness_sensor_type sensor 225 to brightness values; -1 means keeping the current brightness. --> 226 <integer-array name="config_doze_brightness_sensor_to_brightness"> 227 <item>-1</item> <!-- 0: OFF --> 228 <item>2</item> <!-- 1: NIGHT --> 229 <item>5</item> <!-- 2: LOW --> 230 <item>27</item> <!-- 3: HIGH --> 231 <item>28</item> <!-- 4: SUN --> 232 </integer-array> 233 234 <!-- Doze: Table that translates sensor values from the doze_brightness_sensor_type sensor 235 to an opacity value for a black scrim that is overlayed in AOD1. 236 Valid range is from 0 (transparent) to 255 (opaque). 237 -1 means keeping the current opacity. --> 238 <integer-array name="config_doze_brightness_sensor_to_scrim_opacity"> 239 <item>-1</item> <!-- 0: OFF --> 240 <item>0</item> <!-- 1: NIGHT --> 241 <item>0</item> <!-- 2: LOW --> 242 <item>0</item> <!-- 3: HIGH --> 243 <item>0</item> <!-- 4: SUN --> 244 </integer-array> 245 246 <!-- Doze: whether the double tap sensor reports 2D touch coordinates --> 247 <bool name="doze_double_tap_reports_touch_coordinates">false</bool> 248 249 <!-- Hotspot tile: number of days to show after feature is used. --> 250 <integer name="days_to_show_hotspot_tile">30</integer> 251 252 <!-- Color inversion tile: number of days to show after feature is used. --> 253 <integer name="days_to_show_color_inversion_tile">7</integer> 254 255 <!-- Number of times to show the strong alarm warning text in the volume dialog --> 256 <integer name="zen_mode_alarm_warning_threshold">5</integer> 257 258 <!-- Maximum number of total conditions to display in the zen mode selection panel --> 259 <integer name="zen_mode_max_conditions">5</integer> 260 261 <!-- Enable the default volume dialog --> 262 <bool name="enable_volume_ui">true</bool> 263 264 <!-- Enable the default volume level warning dialog --> 265 <bool name="enable_safety_warning">true</bool> 266 267 <!-- Whether to show operator name in the status bar --> 268 <bool name="config_showOperatorNameInStatusBar">false</bool> 269 270 <!-- Duration of the full carrier network change icon animation. --> 271 <integer name="carrier_network_change_anim_time">3000</integer> 272 273 <!-- Duration of the expansion animation in the volume dialog --> 274 <item name="volume_expand_animation_duration" type="integer">300</item> 275 276 <!-- Whether to show the full screen user switcher. --> 277 <bool name="config_enableFullscreenUserSwitcher">false</bool> 278 279 <!-- SystemUIFactory component --> 280 <string name="config_systemUIFactoryComponent" translatable="false">com.android.systemui.SystemUIFactory</string> 281 282 <!-- SystemUI Services: The classes of the stuff to start. --> 283 <string-array name="config_systemUIServiceComponents" translatable="false"> 284 <item>com.android.systemui.util.NotificationChannels</item> 285 <item>com.android.systemui.keyguard.KeyguardViewMediator</item> 286 <item>com.android.systemui.recents.Recents</item> 287 <item>com.android.systemui.volume.VolumeUI</item> 288 <item>com.android.systemui.stackdivider.Divider</item> 289 <item>com.android.systemui.statusbar.phone.StatusBar</item> 290 <item>com.android.systemui.usb.StorageNotification</item> 291 <item>com.android.systemui.power.PowerUI</item> 292 <item>com.android.systemui.media.RingtonePlayer</item> 293 <item>com.android.systemui.keyboard.KeyboardUI</item> 294 <item>com.android.systemui.pip.PipUI</item> 295 <item>com.android.systemui.shortcut.ShortcutKeyDispatcher</item> 296 <item>@string/config_systemUIVendorServiceComponent</item> 297 <item>com.android.systemui.util.leak.GarbageMonitor$Service</item> 298 <item>com.android.systemui.LatencyTester</item> 299 <item>com.android.systemui.globalactions.GlobalActionsComponent</item> 300 <item>com.android.systemui.ScreenDecorations</item> 301 <item>com.android.systemui.biometrics.AuthController</item> 302 <item>com.android.systemui.SliceBroadcastRelayHandler</item> 303 <item>com.android.systemui.SizeCompatModeActivityController</item> 304 <item>com.android.systemui.statusbar.notification.InstantAppNotifier</item> 305 <item>com.android.systemui.theme.ThemeOverlayController</item> 306 <item>com.android.systemui.accessibility.WindowMagnification</item> 307 <item>com.android.systemui.accessibility.SystemActions</item> 308 <item>com.android.systemui.toast.ToastUI</item> 309 </string-array> 310 311 <!-- SystemUI vender service, used in config_systemUIServiceComponents. --> 312 <string name="config_systemUIVendorServiceComponent" translatable="false">com.android.systemui.VendorServices</string> 313 314 <!-- SystemUI Services (per user): The classes of the stuff to start for each user. This is a subset of the config_systemUIServiceComponents --> 315 <string-array name="config_systemUIServiceComponentsPerUser" translatable="false"> 316 <item>com.android.systemui.util.NotificationChannels</item> 317 </string-array> 318 319 <!-- Nav bar button default ordering/layout --> 320 <string name="config_navBarLayout" translatable="false">left[.5W],back[1WC];home;recent[1WC],right[.5W]</string> 321 <string name="config_navBarLayoutQuickstep" translatable="false">back[1.7WC];home;contextual[1.7WC]</string> 322 <string name="config_navBarLayoutHandle" translatable="false">back[40AC];home_handle;ime_switcher[40AC]</string> 323 324 <bool name="quick_settings_show_full_alarm">false</bool> 325 326 <!-- Whether to show a warning notification when device's skin temperature is high. --> 327 <integer name="config_showTemperatureWarning">0</integer> 328 329 <!-- Whether to show a alarm dialog when device's usb port is overheating. --> 330 <integer name="config_showUsbPortAlarm">0</integer> 331 332 <!-- Accessibility actions --> 333 <item type="id" name="action_split_task_to_left" /> 334 <item type="id" name="action_split_task_to_right" /> 335 <item type="id" name="action_split_task_to_top" /> 336 337 <item type="id" name="action_toggle_overview"/> 338 339 <!-- Whether or not to show notifications to the user. If disabled, SystemUI will still be 340 registered as a notification listener, but will ignore all notification events. --> 341 <bool name="config_renderNotifications">true</bool> 342 343 <!-- Whether or not the gear icon on notifications should be shown. The gear is shown when the 344 the notification is not swiped enough to dismiss it. --> 345 <bool name="config_showNotificationGear">true</bool> 346 347 <!-- Whether or not a background should be drawn behind a notification. --> 348 <bool name="config_drawNotificationBackground">true</bool> 349 350 <!-- Whether or the notifications can be shown and dismissed with a drag. --> 351 <bool name="config_enableNotificationShadeDrag">true</bool> 352 353 <!-- Whether to show activity indicators in the status bar --> 354 <bool name="config_showActivity">false</bool> 355 356 <!-- Whether or not the button to clear all notifications will be shown. --> 357 <bool name="config_enableNotificationsClearAll">true</bool> 358 359 <!-- Whether or not to show the notification shelf that houses the icons of notifications that 360 have been scrolled off-screen. --> 361 <bool name="config_showNotificationShelf">true</bool> 362 363 <!-- Whether or not the notifications should always fade as they are dismissed. --> 364 <bool name="config_fadeNotificationsOnDismiss">false</bool> 365 366 <!-- Whether or not the parent of the notification row itself is being translated when swiped or 367 its children views. If true, then the contents are translated and vice versa. --> 368 <bool name="config_translateNotificationContentsOnSwipe">true</bool> 369 370 <!-- Whether or not the fade on the notification is based on the amount that it has been swiped 371 off-screen. --> 372 <bool name="config_fadeDependingOnAmountSwiped">false</bool> 373 374 <!-- Whether or not to show the expand button at the end of the notification header. --> 375 <bool name="config_showNotificationExpandButtonAtEnd">false</bool> 376 377 <!-- Whether or the notifications should be clipped to be reduced in height if it has been 378 scrolled to the top of the screen. --> 379 <bool name="config_clipNotificationScrollToTop">true</bool> 380 381 <!-- Whether or not the notification contents should be clipped to any background that is 382 set on the notification container. For example, if this value is true and the background 383 has rounded corners, then the contents will be clipped to those corners. --> 384 <bool name="config_clipNotificationsToOutline">false</bool> 385 386 <!-- Whether or not notifications that can be expanded will always be in their expanded state. 387 This value only affects notifications that are not a group of notifications from the same 388 applications. If this value is false, then only the first notification will be expanded; 389 the other notifications need to be manually expanded by the user. --> 390 <bool name="config_alwaysExpandNonGroupedNotifications">false</bool> 391 392 <!-- Whether or not an expandable notification can be manually expanded or collapsed by the 393 user. Grouped notifications are still expandable even if this value is false. --> 394 <bool name="config_enableNonGroupedNotificationExpand">true</bool> 395 396 <!-- Whether or not there should be dividing lines between child notifications when the 397 group has been expanded. --> 398 <bool name="config_showDividersWhenGroupNotificationExpanded">false</bool> 399 400 <!-- Whether or not the dividing lines should be shown when the container is expanding and 401 collapsing. If this value is true, then the lines will only show when the container has 402 been completely expanded. --> 403 <bool name="config_hideDividersDuringExpand">false</bool> 404 405 <!-- Whether or not child notifications that are part of a group will have shadows. --> 406 <bool name="config_enableShadowOnChildNotifications">true</bool> 407 408 <!-- Whether or not a view containing child notifications will have a custom background when 409 it has been expanded to reveal its children. --> 410 <bool name="config_showGroupNotificationBgWhenExpanded">false</bool> 411 412 <!-- Should we vibrate on an icon animation of the shelf. This should only be active if the 413 vibrator is capable of subtle vibrations --> 414 <bool name="config_vibrateOnIconAnimation">false</bool> 415 416 <!-- If true, enable the advance anti-falsing classifier on the lockscreen. On some devices it 417 does not work well, particularly with noisy touchscreens. Note that disabling it may 418 increase the rate of unintentional unlocks. --> 419 <bool name="config_lockscreenAntiFalsingClassifierEnabled">true</bool> 420 421 <!-- Snooze: default notificaiton snooze time. --> 422 <integer name="config_notification_snooze_time_default">60</integer> 423 424 <!-- Snooze: List of snooze values in integer minutes. --> 425 <integer-array name="config_notification_snooze_times"> 426 <item>15</item> 427 <item>30</item> 428 <item>60</item> 429 <item>120</item> 430 </integer-array> 431 432 <!-- Smart replies in notifications: Whether smart replies in notifications are enabled. --> 433 <bool name="config_smart_replies_in_notifications_enabled">true</bool> 434 435 <!-- Smart replies in notifications: Whether we disable the feature unless the app targets P --> 436 <bool name="config_smart_replies_in_notifications_requires_targeting_p">true</bool> 437 438 <!-- Smart replies in notifications: Maximum number of times SmartReplyView will try to find a 439 better (narrower) line-break for a double-line smart reply button. --> 440 <integer name="config_smart_replies_in_notifications_max_squeeze_remeasure_attempts">3</integer> 441 442 <!-- Smart replies in notifications: Whether by default tapping on a choice should let the user 443 edit the input before it is sent to the app. Developers can override this via 444 RemoteInput.Builder.setEditChoicesBeforeSending. --> 445 <bool name="config_smart_replies_in_notifications_edit_choices_before_sending">false</bool> 446 447 <!-- Smart replies in notifications: Whether smart suggestions in notifications are enabled in 448 heads-up notifications. --> 449 <bool name="config_smart_replies_in_notifications_show_in_heads_up">true</bool> 450 451 <!-- Smart replies in notifications: Minimum number of system generated smart replies that 452 should be shown in a notification. If we cannot show at least this many replies we instead 453 show none. --> 454 <integer name="config_smart_replies_in_notifications_min_num_system_generated_replies">0</integer> 455 456 <!-- Smart replies in notifications: Maximum number of smart actions to show in notifications. 457 --> 458 <integer name="config_smart_replies_in_notifications_max_num_actions">-1</integer> 459 460 <!-- Smart replies in notifications: Delay (ms) before smart suggestions are clickable, since 461 they were added. --> 462 <integer name="config_smart_replies_in_notifications_onclick_init_delay">200</integer> 463 464 <!-- Screenshot editing default activity. Must handle ACTION_EDIT image/png intents. 465 Blank sends the user to the Chooser first. 466 This name is in the ComponentName flattened format (package/class) --> 467 <string name="config_screenshotEditor" translatable="false"></string> 468 469 <!-- On debuggable builds, alert the user if SystemUI PSS goes over this number (in kb) --> 470 <integer name="watch_heap_limit">256000</integer> 471 472 <!-- Animation duration for resizing of PIP when entering/exiting. --> 473 <integer name="config_pipResizeAnimationDuration">425</integer> 474 475 <!-- Allow dragging the PIP to a location to close it --> 476 <bool name="config_pipEnableDismissDragToEdge">true</bool> 477 478 <!-- Allow PIP to resize to a slightly bigger state upon touch/showing the menu --> 479 <bool name="config_pipEnableResizeForMenu">true</bool> 480 481 <!-- Allow PIP to enable round corner, see also R.dimen.pip_corner_radius --> 482 <bool name="config_pipEnableRoundCorner">false</bool> 483 484 <!-- SystemUI Plugins that can be loaded on user builds. --> 485 <string-array name="config_pluginWhitelist" translatable="false"> 486 <item>com.android.systemui</item> 487 </string-array> 488 489 <!-- Launcher package name for overlaying icons. --> 490 <string name="launcher_overlayable_package" translatable="false">com.android.launcher3</string> 491 492 <!-- ThemePicker package name for overlaying icons. --> 493 <string name="themepicker_overlayable_package" translatable="false">com.android.wallpaper</string> 494 495 <!-- Default rounded corner curve (a Bezier). Must match (the curved path in) rounded.xml. 496 Note that while rounded.xml includes the entire path (including the horizontal and vertical 497 corner edges), this pulls out just the curve. 498 --> 499 <string name="config_rounded_mask" translatable="false">"M8,0C3.6,0,0,3.6,0,8"</string> 500 501 <!-- Preferred refresh rate at keyguard, if supported by the display --> 502 <integer name="config_keyguardRefreshRate">-1</integer> 503 504 <!-- Whether or not to add a "people" notifications section --> 505 <bool name="config_usePeopleFiltering">false</bool> 506 507 <!-- Defines the blacklist for system icons. That is to say, the icons in the status bar that 508 are part of the blacklist are never displayed. Each item in the blacklist must be a string 509 defined in core/res/res/config.xml to properly blacklist the icon. 510 --> 511 <string-array name="config_statusBarIconBlackList" translatable="false"> 512 <item>@*android:string/status_bar_rotate</item> 513 <item>@*android:string/status_bar_headset</item> 514 </string-array> 515 516 <!-- A path similar to frameworks/base/core/res/res/values/config.xml 517 config_mainBuiltInDisplayCutout that describes a path larger than the exact path of a display 518 cutout. If present as well as config_enableDisplayCutoutProtection is set to true, then 519 SystemUI will draw this "protection path" instead of the display cutout path that is normally 520 used for anti-aliasing. 521 522 This path will only be drawn when the front-facing camera turns on, otherwise the main 523 DisplayCutout path will be rendered 524 --> 525 <string translatable="false" name="config_frontBuiltInDisplayCutoutProtection"></string> 526 527 <!-- ID for the camera that needs extra protection --> 528 <string translatable="false" name="config_protectedCameraId"></string> 529 530 <!-- Comma-separated list of packages to exclude from camera protection e.g. 531 "com.android.systemui,com.android.xyz" --> 532 <string translatable="false" name="config_cameraProtectionExcludedPackages"></string> 533 534 <!-- Flag to turn on the rendering of the above path or not --> 535 <bool name="config_enableDisplayCutoutProtection">false</bool> 536 537 <!-- Respect drawable/rounded.xml intrinsic size for multiple radius corner path customization --> 538 <bool name="config_roundedCornerMultipleRadius">false</bool> 539 540 <!-- Controls can query 2 preferred applications for limited number of suggested controls. 541 This config value should contain a list of package names of thoses preferred applications. 542 --> 543 <string-array translatable="false" name="config_controlsPreferredPackages" /> 544 545 <!-- Max number of columns for quick controls area --> 546 <integer name="controls_max_columns">2</integer> 547 548 <!-- Max number of columns for power menu --> 549 <integer name="power_menu_max_columns">3</integer> 550 551 <!-- If the dp width of the available space is <= this value, potentially adjust the number 552 of columns--> 553 <integer name="controls_max_columns_adjust_below_width_dp">320</integer> 554 <!-- If the config font scale is >= this value, potentially adjust the number of columns--> 555 <item name="controls_max_columns_adjust_above_font_scale" translatable="false" format="float" type="dimen">1.25</item> 556</resources> 557