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 <!-- If using proximity_sensor_type, specifies a threshold value to distinguish near and 213 far break points. A sensor value more than this is considered "far". If not set, 214 proximity_sensor_threshold is used. This allows one to implement a latching mechanism for 215 noisy sensors. --> 216 <item name="proximity_sensor_threshold_latch" translatable="false" format="float" type="dimen"></item> 217 218 <!-- Override value to use for proximity sensor as confirmation for proximity_sensor_type. --> 219 <string name="proximity_sensor_secondary_type" translatable="false"></string> 220 221 <!-- If using proximity_sensor_secondary_type, specifies a threshold value to distinguish 222 near and far break points. A sensor value less than this is considered "near". --> 223 <item name="proximity_sensor_secondary_threshold" translatable="false" format="float" 224 type="dimen"></item> 225 226 <!-- If using proximity_sensor_secondary_type, specifies a threshold value to distinguish near and 227 far break points. A sensor value more than this is considered "far". If not set, 228 proximity_sensor_secondary_threshold is used. This allows one to implement a latching 229 mechanism for noisy sensors. --> 230 <item name="proximity_sensor_secondary_threshold_latch" translatable="false" format="float" type="dimen"></item> 231 232 <!-- Doze: pulse parameter - how long does it take to fade in? --> 233 <integer name="doze_pulse_duration_in">130</integer> 234 235 <!-- Doze: pulse parameter - once faded in, how long does it stay visible? --> 236 <integer name="doze_pulse_duration_visible">6000</integer> 237 238 <!-- Doze: pulse parameter - how long does it take to fade out? --> 239 <integer name="doze_pulse_duration_out">600</integer> 240 241 <!-- Doze: alpha to apply to small icons when dozing --> 242 <integer name="doze_small_icon_alpha">222</integer><!-- 87% of 0xff --> 243 244 <!-- Doze: Table that translates sensor values from the doze_brightness_sensor_type sensor 245 to brightness values; -1 means keeping the current brightness. --> 246 <integer-array name="config_doze_brightness_sensor_to_brightness"> 247 <item>-1</item> <!-- 0: OFF --> 248 <item>2</item> <!-- 1: NIGHT --> 249 <item>5</item> <!-- 2: LOW --> 250 <item>27</item> <!-- 3: HIGH --> 251 <item>28</item> <!-- 4: SUN --> 252 </integer-array> 253 254 <!-- Doze: Table that translates sensor values from the doze_brightness_sensor_type sensor 255 to an opacity value for a black scrim that is overlayed in AOD1. 256 Valid range is from 0 (transparent) to 255 (opaque). 257 -1 means keeping the current opacity. --> 258 <integer-array name="config_doze_brightness_sensor_to_scrim_opacity"> 259 <item>-1</item> <!-- 0: OFF --> 260 <item>0</item> <!-- 1: NIGHT --> 261 <item>0</item> <!-- 2: LOW --> 262 <item>0</item> <!-- 3: HIGH --> 263 <item>0</item> <!-- 4: SUN --> 264 </integer-array> 265 266 <!-- Doze: whether the double tap sensor reports 2D touch coordinates --> 267 <bool name="doze_double_tap_reports_touch_coordinates">false</bool> 268 269 <!-- Hotspot tile: number of days to show after feature is used. --> 270 <integer name="days_to_show_hotspot_tile">30</integer> 271 272 <!-- Color inversion tile: number of days to show after feature is used. --> 273 <integer name="days_to_show_color_inversion_tile">7</integer> 274 275 <!-- Number of times to show the strong alarm warning text in the volume dialog --> 276 <integer name="zen_mode_alarm_warning_threshold">5</integer> 277 278 <!-- Maximum number of total conditions to display in the zen mode selection panel --> 279 <integer name="zen_mode_max_conditions">5</integer> 280 281 <!-- Enable the default volume dialog --> 282 <bool name="enable_volume_ui">true</bool> 283 284 <!-- Enable the default volume level warning dialog --> 285 <bool name="enable_safety_warning">true</bool> 286 287 <!-- Whether to show operator name in the status bar --> 288 <bool name="config_showOperatorNameInStatusBar">false</bool> 289 290 <!-- Duration of the full carrier network change icon animation. --> 291 <integer name="carrier_network_change_anim_time">3000</integer> 292 293 <!-- Duration of the expansion animation in the volume dialog --> 294 <item name="volume_expand_animation_duration" type="integer">300</item> 295 296 <!-- Whether to show the full screen user switcher. --> 297 <bool name="config_enableFullscreenUserSwitcher">false</bool> 298 299 <!-- SystemUIFactory component --> 300 <string name="config_systemUIFactoryComponent" translatable="false">com.android.systemui.SystemUIFactory</string> 301 302 <!-- SystemUI Services: The classes of the stuff to start. --> 303 <string-array name="config_systemUIServiceComponents" translatable="false"> 304 <item>com.android.systemui.util.NotificationChannels</item> 305 <item>com.android.systemui.keyguard.KeyguardViewMediator</item> 306 <item>com.android.systemui.recents.Recents</item> 307 <item>com.android.systemui.volume.VolumeUI</item> 308 <item>com.android.systemui.stackdivider.Divider</item> 309 <item>com.android.systemui.statusbar.phone.StatusBar</item> 310 <item>com.android.systemui.usb.StorageNotification</item> 311 <item>com.android.systemui.power.PowerUI</item> 312 <item>com.android.systemui.media.RingtonePlayer</item> 313 <item>com.android.systemui.keyboard.KeyboardUI</item> 314 <item>com.android.systemui.pip.PipUI</item> 315 <item>com.android.systemui.shortcut.ShortcutKeyDispatcher</item> 316 <item>@string/config_systemUIVendorServiceComponent</item> 317 <item>com.android.systemui.util.leak.GarbageMonitor$Service</item> 318 <item>com.android.systemui.LatencyTester</item> 319 <item>com.android.systemui.globalactions.GlobalActionsComponent</item> 320 <item>com.android.systemui.ScreenDecorations</item> 321 <item>com.android.systemui.biometrics.AuthController</item> 322 <item>com.android.systemui.SliceBroadcastRelayHandler</item> 323 <item>com.android.systemui.SizeCompatModeActivityController</item> 324 <item>com.android.systemui.statusbar.notification.InstantAppNotifier</item> 325 <item>com.android.systemui.theme.ThemeOverlayController</item> 326 <item>com.android.systemui.accessibility.WindowMagnification</item> 327 <item>com.android.systemui.accessibility.SystemActions</item> 328 <item>com.android.systemui.toast.ToastUI</item> 329 </string-array> 330 331 <!-- QS tile shape store width. negative implies fill configuration instead of stroke--> 332 <dimen name="config_qsTileStrokeWidthActive">-1dp</dimen> 333 <dimen name="config_qsTileStrokeWidthInactive">-1dp</dimen> 334 335 <!-- SystemUI vender service, used in config_systemUIServiceComponents. --> 336 <string name="config_systemUIVendorServiceComponent" translatable="false">com.android.systemui.VendorServices</string> 337 338 <!-- SystemUI Services (per user): The classes of the stuff to start for each user. This is a subset of the config_systemUIServiceComponents --> 339 <string-array name="config_systemUIServiceComponentsPerUser" translatable="false"> 340 <item>com.android.systemui.util.NotificationChannels</item> 341 </string-array> 342 343 <!-- Nav bar button default ordering/layout --> 344 <string name="config_navBarLayout" translatable="false">left[.5W],back[1WC];home;recent[1WC],right[.5W]</string> 345 <string name="config_navBarLayoutQuickstep" translatable="false">back[1.7WC];home;contextual[1.7WC]</string> 346 <string name="config_navBarLayoutHandle" translatable="false">back[40AC];home_handle;ime_switcher[40AC]</string> 347 348 <bool name="quick_settings_show_full_alarm">false</bool> 349 350 <!-- Whether to show a warning notification when device's skin temperature is high. --> 351 <integer name="config_showTemperatureWarning">0</integer> 352 353 <!-- Whether to show a alarm dialog when device's usb port is overheating. --> 354 <integer name="config_showUsbPortAlarm">0</integer> 355 356 <!-- Accessibility actions --> 357 <item type="id" name="action_split_task_to_left" /> 358 <item type="id" name="action_split_task_to_right" /> 359 <item type="id" name="action_split_task_to_top" /> 360 361 <item type="id" name="action_toggle_overview"/> 362 363 <!-- Whether or not to show notifications to the user. If disabled, SystemUI will still be 364 registered as a notification listener, but will ignore all notification events. --> 365 <bool name="config_renderNotifications">true</bool> 366 367 <!-- Whether or not the gear icon on notifications should be shown. The gear is shown when the 368 the notification is not swiped enough to dismiss it. --> 369 <bool name="config_showNotificationGear">true</bool> 370 371 <!-- Whether or not a background should be drawn behind a notification. --> 372 <bool name="config_drawNotificationBackground">true</bool> 373 374 <!-- Whether or the notifications can be shown and dismissed with a drag. --> 375 <bool name="config_enableNotificationShadeDrag">true</bool> 376 377 <!-- Whether to show activity indicators in the status bar --> 378 <bool name="config_showActivity">false</bool> 379 380 <!-- Whether or not the button to clear all notifications will be shown. --> 381 <bool name="config_enableNotificationsClearAll">true</bool> 382 383 <!-- Whether or not to show the notification shelf that houses the icons of notifications that 384 have been scrolled off-screen. --> 385 <bool name="config_showNotificationShelf">true</bool> 386 387 <!-- Whether or not the notifications should always fade as they are dismissed. --> 388 <bool name="config_fadeNotificationsOnDismiss">false</bool> 389 390 <!-- Whether or not the parent of the notification row itself is being translated when swiped or 391 its children views. If true, then the contents are translated and vice versa. --> 392 <bool name="config_translateNotificationContentsOnSwipe">true</bool> 393 394 <!-- Whether or not the fade on the notification is based on the amount that it has been swiped 395 off-screen. --> 396 <bool name="config_fadeDependingOnAmountSwiped">false</bool> 397 398 <!-- Whether or not to show the expand button at the end of the notification header. --> 399 <bool name="config_showNotificationExpandButtonAtEnd">false</bool> 400 401 <!-- Whether or the notifications should be clipped to be reduced in height if it has been 402 scrolled to the top of the screen. --> 403 <bool name="config_clipNotificationScrollToTop">true</bool> 404 405 <!-- Whether or not the notification contents should be clipped to any background that is 406 set on the notification container. For example, if this value is true and the background 407 has rounded corners, then the contents will be clipped to those corners. --> 408 <bool name="config_clipNotificationsToOutline">false</bool> 409 410 <!-- Whether or not notifications that can be expanded will always be in their expanded state. 411 This value only affects notifications that are not a group of notifications from the same 412 applications. If this value is false, then only the first notification will be expanded; 413 the other notifications need to be manually expanded by the user. --> 414 <bool name="config_alwaysExpandNonGroupedNotifications">false</bool> 415 416 <!-- Whether or not an expandable notification can be manually expanded or collapsed by the 417 user. Grouped notifications are still expandable even if this value is false. --> 418 <bool name="config_enableNonGroupedNotificationExpand">true</bool> 419 420 <!-- Whether or not there should be dividing lines between child notifications when the 421 group has been expanded. --> 422 <bool name="config_showDividersWhenGroupNotificationExpanded">false</bool> 423 424 <!-- Whether or not the dividing lines should be shown when the container is expanding and 425 collapsing. If this value is true, then the lines will only show when the container has 426 been completely expanded. --> 427 <bool name="config_hideDividersDuringExpand">false</bool> 428 429 <!-- Whether or not child notifications that are part of a group will have shadows. --> 430 <bool name="config_enableShadowOnChildNotifications">true</bool> 431 432 <!-- Whether or not a view containing child notifications will have a custom background when 433 it has been expanded to reveal its children. --> 434 <bool name="config_showGroupNotificationBgWhenExpanded">false</bool> 435 436 <!-- Should we vibrate on an icon animation of the shelf. This should only be active if the 437 vibrator is capable of subtle vibrations --> 438 <bool name="config_vibrateOnIconAnimation">false</bool> 439 440 <!-- If true, enable the advance anti-falsing classifier on the lockscreen. On some devices it 441 does not work well, particularly with noisy touchscreens. Note that disabling it may 442 increase the rate of unintentional unlocks. --> 443 <bool name="config_lockscreenAntiFalsingClassifierEnabled">true</bool> 444 445 <!-- Snooze: default notificaiton snooze time. --> 446 <integer name="config_notification_snooze_time_default">60</integer> 447 448 <!-- Snooze: List of snooze values in integer minutes. --> 449 <integer-array name="config_notification_snooze_times"> 450 <item>15</item> 451 <item>30</item> 452 <item>60</item> 453 <item>120</item> 454 </integer-array> 455 456 <!-- Smart replies in notifications: Whether smart replies in notifications are enabled. --> 457 <bool name="config_smart_replies_in_notifications_enabled">true</bool> 458 459 <!-- Smart replies in notifications: Whether we disable the feature unless the app targets P --> 460 <bool name="config_smart_replies_in_notifications_requires_targeting_p">true</bool> 461 462 <!-- Smart replies in notifications: Maximum number of times SmartReplyView will try to find a 463 better (narrower) line-break for a double-line smart reply button. --> 464 <integer name="config_smart_replies_in_notifications_max_squeeze_remeasure_attempts">3</integer> 465 466 <!-- Smart replies in notifications: Whether by default tapping on a choice should let the user 467 edit the input before it is sent to the app. Developers can override this via 468 RemoteInput.Builder.setEditChoicesBeforeSending. --> 469 <bool name="config_smart_replies_in_notifications_edit_choices_before_sending">false</bool> 470 471 <!-- Smart replies in notifications: Whether smart suggestions in notifications are enabled in 472 heads-up notifications. --> 473 <bool name="config_smart_replies_in_notifications_show_in_heads_up">true</bool> 474 475 <!-- Smart replies in notifications: Minimum number of system generated smart replies that 476 should be shown in a notification. If we cannot show at least this many replies we instead 477 show none. --> 478 <integer name="config_smart_replies_in_notifications_min_num_system_generated_replies">0</integer> 479 480 <!-- Smart replies in notifications: Maximum number of smart actions to show in notifications. 481 --> 482 <integer name="config_smart_replies_in_notifications_max_num_actions">-1</integer> 483 484 <!-- Smart replies in notifications: Delay (ms) before smart suggestions are clickable, since 485 they were added. --> 486 <integer name="config_smart_replies_in_notifications_onclick_init_delay">200</integer> 487 488 <!-- Screenshot editing default activity. Must handle ACTION_EDIT image/png intents. 489 Blank sends the user to the Chooser first. 490 This name is in the ComponentName flattened format (package/class) --> 491 <string name="config_screenshotEditor" translatable="false"></string> 492 493 <!-- On debuggable builds, alert the user if SystemUI PSS goes over this number (in kb) --> 494 <integer name="watch_heap_limit">256000</integer> 495 496 <!-- Animation duration for resizing of PIP when entering/exiting. --> 497 <integer name="config_pipResizeAnimationDuration">425</integer> 498 499 <!-- Allow dragging the PIP to a location to close it --> 500 <bool name="config_pipEnableDismissDragToEdge">true</bool> 501 502 <!-- Allow PIP to resize to a slightly bigger state upon touch/showing the menu --> 503 <bool name="config_pipEnableResizeForMenu">true</bool> 504 505 <!-- Allow PIP to enable round corner, see also R.dimen.pip_corner_radius --> 506 <bool name="config_pipEnableRoundCorner">false</bool> 507 508 <!-- SystemUI Plugins that can be loaded on user builds. --> 509 <string-array name="config_pluginWhitelist" translatable="false"> 510 <item>com.android.systemui</item> 511 </string-array> 512 513 <integer name="ongoing_appops_dialog_max_apps">5</integer> 514 515 <!-- Launcher package name for overlaying icons. --> 516 <string name="launcher_overlayable_package" translatable="false">com.android.launcher3</string> 517 518 <!-- ThemePicker package name for overlaying icons. --> 519 <string name="themepicker_overlayable_package" translatable="false">com.android.wallpaper</string> 520 521 <!-- Default rounded corner curve (a Bezier). Must match (the curved path in) rounded.xml. 522 Note that while rounded.xml includes the entire path (including the horizontal and vertical 523 corner edges), this pulls out just the curve. 524 --> 525 <string name="config_rounded_mask" translatable="false">"M8,0C3.6,0,0,3.6,0,8"</string> 526 527 <!-- Preferred refresh rate at keyguard, if supported by the display --> 528 <integer name="config_keyguardRefreshRate">-1</integer> 529 530 <!-- Whether or not to add a "people" notifications section --> 531 <bool name="config_usePeopleFiltering">false</bool> 532 533 <!-- Defines the blacklist for system icons. That is to say, the icons in the status bar that 534 are part of the blacklist are never displayed. Each item in the blacklist must be a string 535 defined in core/res/res/config.xml to properly blacklist the icon. 536 --> 537 <string-array name="config_statusBarIconBlackList" translatable="false"> 538 <item>@*android:string/status_bar_rotate</item> 539 <item>@*android:string/status_bar_headset</item> 540 </string-array> 541 542 <!-- A path similar to frameworks/base/core/res/res/values/config.xml 543 config_mainBuiltInDisplayCutout that describes a path larger than the exact path of a display 544 cutout. If present as well as config_enableDisplayCutoutProtection is set to true, then 545 SystemUI will draw this "protection path" instead of the display cutout path that is normally 546 used for anti-aliasing. 547 548 This path will only be drawn when the front-facing camera turns on, otherwise the main 549 DisplayCutout path will be rendered 550 --> 551 <string translatable="false" name="config_frontBuiltInDisplayCutoutProtection"></string> 552 553 <!-- ID for the camera that needs extra protection --> 554 <string translatable="false" name="config_protectedCameraId"></string> 555 556 <!-- Comma-separated list of packages to exclude from camera protection e.g. 557 "com.android.systemui,com.android.xyz" --> 558 <string translatable="false" name="config_cameraProtectionExcludedPackages"></string> 559 560 <!-- Flag to turn on the rendering of the above path or not --> 561 <bool name="config_enableDisplayCutoutProtection">false</bool> 562 563 <!-- Respect drawable/rounded.xml intrinsic size for multiple radius corner path customization --> 564 <bool name="config_roundedCornerMultipleRadius">false</bool> 565 566 <!-- Controls can query 2 preferred applications for limited number of suggested controls. 567 This config value should contain a list of package names of thoses preferred applications. 568 --> 569 <string-array translatable="false" name="config_controlsPreferredPackages" /> 570 571 <!-- Max number of columns for quick controls area --> 572 <integer name="controls_max_columns">2</integer> 573 574 <!-- Max number of columns for power menu --> 575 <integer name="power_menu_max_columns">3</integer> 576 577 <!-- If the dp width of the available space is <= this value, potentially adjust the number 578 of columns--> 579 <integer name="controls_max_columns_adjust_below_width_dp">320</integer> 580 <!-- If the config font scale is >= this value, potentially adjust the number of columns--> 581 <item name="controls_max_columns_adjust_above_font_scale" translatable="false" format="float" type="dimen">1.25</item> 582 583 <!-- Whether or not to show a notification for an unknown battery state --> 584 <bool name="config_showNotificationForUnknownBatteryState">false</bool> 585 <!-- content URL in a notification when ACTION_BATTERY_CHANGED.EXTRA_PRESENT field is false --> 586 <string translatable="false" name="config_batteryStateUnknownUrl"></string> 587</resources> 588