1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* //device/apps/common/assets/res/any/dimens.xml 4** 5** Copyright 2006, The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20<resources> 21 <!-- The width that is used when creating thumbnails of applications. --> 22 <dimen name="thumbnail_width">192dp</dimen> 23 <!-- The height that is used when creating thumbnails of applications. --> 24 <dimen name="thumbnail_height">192dp</dimen> 25 <!-- The amount to scale a fullscreen screenshot thumbnail. --> 26 <item name="thumbnail_fullscreen_scale" type="fraction">60%</item> 27 <!-- The width used to calculate scale for full screen thumbnail on TV --> 28 <integer name="thumbnail_width_tv">240</integer> 29 <!-- The standard size (both width and height) of an application icon that 30 will be displayed in the app launcher and elsewhere. --> 31 <dimen name="app_icon_size">48dip</dimen> 32 33 <!-- Offset from the bottom of the device a toast shows --> 34 <dimen name="toast_y_offset">48dp</dimen> 35 <!-- Max width of a toast --> 36 <dimen name="toast_width">300dp</dimen> 37 <!-- Text size of the message within a toast --> 38 <dimen name="toast_text_size">14sp</dimen> 39 <!-- Elevation of toast view --> 40 <dimen name="toast_elevation">2dp</dimen> 41 42 <!-- Height of the status bar --> 43 <dimen name="status_bar_height">@dimen/status_bar_height_portrait</dimen> 44 <!-- Height of the status bar in portrait. The height should be 45 Max((status bar content height + waterfall top size), top cutout size) --> 46 <dimen name="status_bar_height_portrait">24dp</dimen> 47 <!-- Height of the status bar in landscape. The height should be 48 Max((status bar content height + waterfall top size), top cutout size) --> 49 <dimen name="status_bar_height_landscape">@dimen/status_bar_height_portrait</dimen> 50 <!-- Height of area above QQS where battery/time go --> 51 <dimen name="quick_qs_offset_height">48dp</dimen> 52 <!-- Height of the bottom navigation / system bar. --> 53 <dimen name="navigation_bar_height">48dp</dimen> 54 <!-- Height of the bottom navigation bar in portrait; often the same as @dimen/navigation_bar_height --> 55 <dimen name="navigation_bar_height_landscape">48dp</dimen> 56 <!-- Width of the navigation bar when it is placed vertically on the screen --> 57 <dimen name="navigation_bar_width">48dp</dimen> 58 <!-- How much we expand the touchable region of the status bar below the notch to catch touches 59 that just start below the notch. --> 60 <dimen name="display_cutout_touchable_region_size">12dp</dimen> 61 62 <!-- Height of the bottom navigation bar frame; this is different than navigation_bar_height 63 where that is the height reported to all the other windows to resize themselves around the 64 navigation bar window but navigation_bar_frame_height is reported to SystemUI navigation 65 bar view's window --> 66 <dimen name="navigation_bar_frame_height">@dimen/navigation_bar_height</dimen> 67 <!-- Height of the bottom navigation bar frame in landscape --> 68 <dimen name="navigation_bar_frame_height_landscape">@dimen/navigation_bar_frame_height</dimen> 69 70 <!-- The height of the navigation gesture area if the gesture is starting from the bottom. --> 71 <dimen name="navigation_bar_gesture_height">@dimen/navigation_bar_frame_height</dimen> 72 73 <!-- The height of the navigation larger gesture area if the gesture is starting from 74 the bottom. --> 75 <dimen name="navigation_bar_gesture_larger_height">80dp</dimen> 76 77 <!-- Height of the bottom navigation / system bar in car mode. --> 78 <dimen name="navigation_bar_height_car_mode">96dp</dimen> 79 <!-- Height of the bottom navigation bar in portrait; often the same as 80 @dimen/navigation_bar_height_car_mode --> 81 <dimen name="navigation_bar_height_landscape_car_mode">96dp</dimen> 82 <!-- Width of the navigation bar when it is placed vertically on the screen in car mode --> 83 <dimen name="navigation_bar_width_car_mode">96dp</dimen> 84 <!-- Height of notification icons in the status bar --> 85 <dimen name="status_bar_icon_size">22dip</dimen> 86 <!-- Desired size of system icons in status bar. --> 87 <dimen name="status_bar_system_icon_size">15dp</dimen> 88 <!-- Intrinsic size of most system icons in status bar. This is the default value that 89 is used if a Drawable reports an intrinsic size of 0. --> 90 <dimen name="status_bar_system_icon_intrinsic_size">17dp</dimen> 91 <!-- Size of the giant number (unread count) in the notifications --> 92 <dimen name="status_bar_content_number_size">48sp</dimen> 93 <!-- Margin at the edge of the screen to ignore touch events for in the windowshade. --> 94 <dimen name="status_bar_edge_ignore">5dp</dimen> 95 96 <!-- Default radius of the software rounded corners. --> 97 <dimen name="rounded_corner_radius">0dp</dimen> 98 <!-- Radius of the software rounded corners at the top of the display in its natural 99 orientation. If zero, the value of rounded_corner_radius is used. --> 100 <dimen name="rounded_corner_radius_top">0dp</dimen> 101 <!-- Radius of the software rounded corners at the bottom of the display in its natural 102 orientation. If zero, the value of rounded_corner_radius is used. --> 103 <dimen name="rounded_corner_radius_bottom">0dp</dimen> 104 105 <!-- Default adjustment for the software rounded corners since corners are not perfectly 106 round. This value is used when retrieving the "radius" of the rounded corner in cases 107 where the exact bezier curve cannot be retrieved. This value will be subtracted from 108 rounded_corner_radius to more accurately provide a "radius" for the rounded corner. --> 109 <dimen name="rounded_corner_radius_adjustment">0px</dimen> 110 <!-- Top adjustment for the software rounded corners since corners are not perfectly 111 round. This value is used when retrieving the "radius" of the top rounded corner in cases 112 where the exact bezier curve cannot be retrieved. This value will be subtracted from 113 rounded_corner_radius_top to more accurately provide a "radius" for the top rounded corners. 114 --> 115 <dimen name="rounded_corner_radius_top_adjustment">0px</dimen> 116 <!-- Bottom adjustment for the software rounded corners since corners are not perfectly 117 round. This value is used when retrieving the "radius" of the bottom rounded corner in 118 cases where the exact bezier curve cannot be retrieved. This value will be subtracted from 119 rounded_corner_radius_bottom to more accurately provide a "radius" for the bottom rounded 120 corners. --> 121 <dimen name="rounded_corner_radius_bottom_adjustment">0px</dimen> 122 123 <!-- Width of the window of the divider bar used to resize docked stacks. --> 124 <dimen name="docked_stack_divider_thickness">48dp</dimen> 125 126 <!-- How much the content in the divider is inset from the window bounds when resting. Used to 127 calculate the bounds of the stacks--> 128 <dimen name="docked_stack_divider_insets">19dp</dimen> 129 130 <!-- To how much the docked stack gets reduced when we decide to minimize the docked stack, i.e. 131 when the user opens homescreen. --> 132 <dimen name="docked_stack_minimize_thickness">8dp</dimen> 133 134 <!-- The amount to leave on-screen when the PIP is minimized. --> 135 <dimen name="pip_minimized_visible_size">48dp</dimen> 136 137 <!-- Min width for a tablet device --> 138 <dimen name="min_xlarge_screen_width">800dp</dimen> 139 140 <!-- Default height of a key in the password keyboard for alpha (used by keyguard) --> 141 <dimen name="password_keyboard_key_height_alpha">56dip</dimen> 142 <!-- Default height of a key in the password keyboard for numeric (used by keyguard) --> 143 <dimen name="password_keyboard_key_height_numeric">56dip</dimen> 144 <!-- Default correction for the space key in the password keyboard (used by keyguard) --> 145 <dimen name="password_keyboard_spacebar_vertical_correction">4dip</dimen> 146 <!-- Default horizontal gap between keys in the password keyboard (used by keyguard) --> 147 <dimen name="password_keyboard_horizontalGap">3dip</dimen> 148 <!-- Default vertical gap between keys in the password keyboard (used by keyguard) --> 149 <dimen name="password_keyboard_verticalGap">9dip</dimen> 150 151 <!-- Size of lockscreen outerring on unsecure unlock LockScreen --> 152 <dimen name="keyguard_lockscreen_outerring_diameter">270dp</dimen> 153 154 <!-- Preference activity side margins --> 155 <dimen name="preference_screen_side_margin">0dp</dimen> 156 <!-- Preference activity side margins negative--> 157 <dimen name="preference_screen_side_margin_negative">0dp</dimen> 158 <!-- Preference activity top margin --> 159 <dimen name="preference_screen_top_margin">0dp</dimen> 160 <!-- Preference activity bottom margin --> 161 <dimen name="preference_screen_bottom_margin">0dp</dimen> 162 <!-- Preference widget area width (to the left of the text) --> 163 <dimen name="preference_widget_width">48dp</dimen> 164 <!-- Preference fragment padding, bottom --> 165 <dimen name="preference_fragment_padding_bottom">0dp</dimen> 166 <!-- Preference fragment padding, sides --> 167 <dimen name="preference_fragment_padding_side">16dp</dimen> 168 <!-- Weight of the left pane in a multi-pane preference layout. --> 169 <integer name="preferences_left_pane_weight">4</integer> 170 <!-- Weight of the right pane in a multi-pane preference layout. So the split is 40:60 --> 171 <integer name="preferences_right_pane_weight">6</integer> 172 <!-- Padding to the left of the preference panel breadcrumb --> 173 <dimen name="preference_breadcrumb_paddingLeft">0dp</dimen> 174 <!-- Padding to the right of the preference panel breadcrumb --> 175 <dimen name="preference_breadcrumb_paddingRight">0dp</dimen> 176 <!-- Minimum space to allocate to the left of a preference item for an icon. 177 This helps in aligning titles when some items have icons and some don't. When space is 178 at a premium, we don't pre-allocate any space. --> 179 <dimen name="preference_icon_minWidth">0dp</dimen> 180 <!-- The platform's desired minimum size for a dialog's width when it 181 is along the major axis (that is the screen is landscape). This may 182 be either a fraction or a dimension. --> 183 <item type="dimen" name="dialog_min_width_major">65%</item> 184 185 <!-- The platform's desired fixed width for a dialog along the major axis 186 (the screen is in landscape). This may be either a fraction or a dimension.--> 187 <item type="dimen" name="dialog_fixed_width_major">100%</item> 188 <!-- The platform's desired fixed width for a dialog along the minor axis 189 (the screen is in portrait). This may be either a fraction or a dimension.--> 190 <item type="dimen" name="dialog_fixed_width_minor">100%</item> 191 <!-- The platform's desired fixed height for a dialog along the major axis 192 (the screen is in portrait). This may be either a fraction or a dimension.--> 193 <item type="dimen" name="dialog_fixed_height_major">80%</item> 194 <!-- The platform's desired fixed height for a dialog along the minor axis 195 (the screen is in landscape). This may be either a fraction or a dimension.--> 196 <item type="dimen" name="dialog_fixed_height_minor">100%</item> 197 198 <!-- Preference activity, vertical padding for the header list --> 199 <dimen name="preference_screen_header_vertical_padding">0dp</dimen> 200 201 <dimen name="preference_screen_header_padding_side">16dip</dimen> 202 <integer name="preference_screen_header_scrollbarStyle">0x02000000</integer> <!-- outsideOverlay --> 203 204 <integer name="preference_fragment_scrollbarStyle">0x02000000</integer> <!-- outsideOverlay --> 205 206 <dimen name="preference_item_padding_side">8dip</dimen> 207 <dimen name="preference_item_padding_inner">8dip</dimen> 208 <dimen name="preference_child_padding_side">16dip</dimen> 209 210 <!-- The platform's desired minimum size for a dialog's width when it 211 is along the minor axis (that is the screen is portrait). This may 212 be either a fraction or a dimension. --> 213 <item type="dimen" name="dialog_min_width_minor">95%</item> 214 215 <!-- Default padding for dialogs. --> 216 <dimen name="dialog_padding">16dp</dimen> 217 218 <!-- The margin on the start of the content view (accommodates the icon) --> 219 <dimen name="notification_content_margin_start">52dp</dimen> 220 221 <!-- The margin on the end of most content views (ignores the expander) --> 222 <dimen name="notification_content_margin_end">16dp</dimen> 223 224 <!-- The margin on the end of the top-line content views (accommodates the expander) --> 225 <dimen name="notification_heading_margin_end">56dp</dimen> 226 227 <!-- The total height of the notification action list --> 228 <dimen name="notification_action_list_height">60dp</dimen> 229 230 <!-- The margin of the notification action list at the top --> 231 <dimen name="notification_action_list_margin_top">0dp</dimen> 232 233 <!-- The visual height of the emphasized notification action --> 234 <dimen name="notification_action_emphasized_height">36dp</dimen> 235 236 <!-- The padding of the actions in non-conversation layout. For conversations, the analogous 237 value is calculated in ConversationLayout#updateActionListPadding() --> 238 <dimen name="notification_actions_padding_start">36dp</dimen> 239 240 <!-- The start padding to optionally use (e.g. if there's extra space) for CallStyle 241 notification actions. 242 this = conversation_content_start (80dp) - button inset (4dp) - action padding (12dp) --> 243 <dimen name="call_notification_collapsible_indent">64dp</dimen> 244 245 <!-- The minimum width of the system actions added to the CallStyle notifications. --> 246 <dimen name="call_notification_system_action_min_width">100dp</dimen> 247 248 <!-- The size of icons for visual actions in the notification_material_action_list --> 249 <dimen name="notification_actions_icon_size">56dp</dimen> 250 251 <!-- The size of icons for visual actions in the notification_material_action_list --> 252 <dimen name="notification_actions_icon_drawable_size">20dp</dimen> 253 254 <!-- The corner radius if the emphasized action buttons in a notification --> 255 <dimen name="notification_action_button_radius">18dp</dimen> 256 257 <!-- Size of the stroke with for the emphasized notification button style --> 258 <dimen name="emphasized_button_stroke_width">1dp</dimen> 259 260 <!-- height of the content margin to accomodate for the header --> 261 <dimen name="notification_content_margin_top">50dp</dimen> 262 263 <!-- height of the content margin that is applied at the end of the notification content --> 264 <dimen name="notification_content_margin">20dp</dimen> 265 266 <!-- The height of the progress bar. --> 267 <dimen name="notification_progress_bar_height">15dp</dimen> 268 269 <!-- The top margin before the notification progress bar. --> 270 <dimen name="notification_progress_margin_top">8dp</dimen> 271 272 <!-- height of the notification header --> 273 <dimen name="notification_header_height">56dp</dimen> 274 275 <!-- The height of the background for a notification header on a group --> 276 <dimen name="notification_header_background_height">49.5dp</dimen> 277 278 <!-- The height of the full-width touch rectangle for the notification header --> 279 <dimen name="notification_header_touchable_height">36dp</dimen> 280 281 <!-- The top padding for the notification header --> 282 <dimen name="notification_header_padding_top">16dp</dimen> 283 284 <!-- The bottom padding for the notification header --> 285 <dimen name="notification_header_padding_bottom">16dp</dimen> 286 287 <!-- The margin at the bottom of the notification header. --> 288 <dimen name="notification_header_margin_bottom">0dp</dimen> 289 290 <!-- size (width and height) of the icon in the notification header --> 291 <dimen name="notification_header_icon_size">18dp</dimen> 292 293 <!-- size (width and height) of the circle around the icon in the notification header --> 294 <dimen name="notification_icon_circle_size">24dp</dimen> 295 296 <!-- padding between the notification icon and the circle containing it --> 297 <dimen name="notification_icon_circle_padding">4dp</dimen> 298 299 <!-- start margin of the icon circle in the notification view --> 300 <dimen name="notification_icon_circle_start">16dp</dimen> 301 302 <!-- size (width and height) of the icon in the notification header --> 303 <dimen name="notification_header_icon_size_ambient">18dp</dimen> 304 305 <!-- The margin before the start of the app name in the header. --> 306 <dimen name="notification_header_app_name_margin_start">3dp</dimen> 307 308 <!-- The margin before and after each of the items in the notification header. --> 309 <dimen name="notification_header_separating_margin">2dp</dimen> 310 311 <!-- The margin before and after each of the items in the conversation header. --> 312 <dimen name="notification_conversation_header_separating_margin">4dp</dimen> 313 314 <!-- The absolute size of the notification expand icon. --> 315 <dimen name="notification_header_expand_icon_size">56dp</dimen> 316 317 <!-- the height of the expand button pill --> 318 <dimen name="notification_expand_button_pill_height">24dp</dimen> 319 320 <!-- Vertical margin for the headerless notification content, when content has 1 line --> 321 <!-- 16 * 2 (margins) + 24 (1 line) = 56 (notification) --> 322 <dimen name="notification_headerless_margin_oneline">16dp</dimen> 323 324 <!-- Vertical margin for the headerless notification content, when content has 2 lines --> 325 <!-- 20 * 2 (margins) + 24 * 2 (2 lines) = 88 (notification) --> 326 <dimen name="notification_headerless_margin_twoline">20dp</dimen> 327 328 <!-- The height of each of the 1 or 2 lines in the headerless notification template --> 329 <dimen name="notification_headerless_line_height">24dp</dimen> 330 331 <!-- vertical margin for the headerless notification content --> 332 <dimen name="notification_headerless_min_height">56dp</dimen> 333 334 <!-- Height of a small notification in the status bar --> 335 <dimen name="notification_min_height">88dp</dimen> 336 337 <!-- The width of the big icons in notifications. --> 338 <dimen name="notification_large_icon_width">64dp</dimen> 339 340 <!-- The width of the big icons in notifications. --> 341 <dimen name="notification_large_icon_height">64dp</dimen> 342 343 <!-- The minimum width of the app name in the header if it shrinks --> 344 <dimen name="notification_header_shrink_min_width">72dp</dimen> 345 346 <!-- The minimum width of optional header fields below which the view is simply hidden --> 347 <dimen name="notification_header_shrink_hide_width">24sp</dimen> 348 349 <!-- The size of the media actions in the media notification. --> 350 <dimen name="media_notification_action_button_size">48dp</dimen> 351 352 <!-- The bottom padding for the media actions container. --> 353 <dimen name="media_notification_actions_padding_bottom">12dp</dimen> 354 355 <!-- The maximum size of the image in the expanded media notification --> 356 <dimen name="media_notification_expanded_image_max_size">94dp</dimen> 357 358 <!-- The maximum size of the image in the expanded media notification --> 359 <dimen name="media_notification_expanded_image_margin_bottom">20dp</dimen> 360 361 <!-- The absolute height for the header in a media notification. --> 362 <dimen name="media_notification_header_height">@dimen/notification_header_height</dimen> 363 364 <!-- The padding at the end of actions when the snooze and bubble buttons are gone--> 365 <dimen name="snooze_and_bubble_gone_padding_end">12dp</dimen> 366 367 <!-- The spacing between messages in Notification.MessagingStyle --> 368 <dimen name="notification_messaging_spacing">6dp</dimen> 369 370 <!-- The spacing between messages in Notification.MessagingStyle --> 371 <dimen name="notification_messaging_spacing_conversation_group">24dp</dimen> 372 373 <!-- The rounding for messaging images --> 374 <dimen name="messaging_image_rounding">4dp</dimen> 375 376 <!-- The minimum size for any image in messaging style in order to be displayed --> 377 <dimen name="messaging_image_min_size">44dp</dimen> 378 379 <!-- The maximum size for any image in messaging style in order to be displayed --> 380 <dimen name="messaging_image_max_height">136dp</dimen> 381 382 <!-- Extra spacing before and after images in messaging style --> 383 <dimen name="messaging_image_extra_spacing">8dp</dimen> 384 385 <!-- Preferred width and height of the search view. --> 386 <dimen name="search_view_preferred_width">320dip</dimen> 387 <dimen name="search_view_preferred_height">48dip</dimen> 388 389 <!-- Dialog padding for round display --> 390 <dimen name="alert_dialog_round_padding">27dip</dimen> 391 <!-- Dialog title height --> 392 <dimen name="alert_dialog_title_height">64dip</dimen> 393 <!-- Dialog button bar width --> 394 <dimen name="alert_dialog_button_bar_width">64dp</dimen> 395 <!-- Dialog button bar height --> 396 <dimen name="alert_dialog_button_bar_height">48dip</dimen> 397 398 <!-- Default height of an action bar. --> 399 <dimen name="action_bar_default_height">48dip</dimen> 400 <!-- Vertical padding around action bar icons. --> 401 <dimen name="action_bar_icon_vertical_padding">8dip</dimen> 402 <!-- Text size for action bar titles --> 403 <dimen name="action_bar_title_text_size">18dp</dimen> 404 <!-- Text size for action bar subtitles --> 405 <dimen name="action_bar_subtitle_text_size">14dp</dimen> 406 <!-- Top margin for action bar subtitles --> 407 <dimen name="action_bar_subtitle_top_margin">-3dp</dimen> 408 <!-- Bottom margin for action bar subtitles --> 409 <dimen name="action_bar_subtitle_bottom_margin">5dip</dimen> 410 411 <!-- Size of clock font in LockScreen on Unsecure unlock screen. --> 412 <dimen name="keyguard_lockscreen_clock_font_size">80dip</dimen> 413 414 <!-- Size of status line font on Unsecure unlock LockScreen. --> 415 <dimen name="keyguard_lockscreen_status_line_font_size">14dip</dimen> 416 417 <!-- Size of right margin on Unsecure unlock LockScreen --> 418 <dimen name="keyguard_lockscreen_status_line_font_right_margin">42dip</dimen> 419 420 <!-- Size of top margin on Clock font to edge on unlock LockScreen --> 421 <dimen name="keyguard_lockscreen_status_line_clockfont_top_margin">22dip</dimen> 422 423 <!-- Size of top margin on Clock font to edge on unlock LockScreen --> 424 <dimen name="keyguard_lockscreen_status_line_clockfont_bottom_margin">12dip</dimen> 425 426 <!-- Padding on left margin of PIN text entry field to center it when del button is showing --> 427 <dimen name="keyguard_lockscreen_pin_margin_left">40dip</dimen> 428 429 <!-- Height of FaceUnlock view in keyguard --> 430 <dimen name="face_unlock_height">330dip</dimen> 431 432 <!-- Minimum popup width for selecting an activity in ActivityChooserDialog/ActivityChooserView. --> 433 <dimen name="activity_chooser_popup_min_width">200dip</dimen> 434 435 <!-- The default gap between components in a layout. --> 436 <dimen name="default_gap">8dip</dimen> 437 438 <!-- Text padding for dropdown items --> 439 <dimen name="dropdownitem_text_padding_left">8dip</dimen> 440 441 <!-- Text padding for dropdown items --> 442 <dimen name="dropdownitem_text_padding_right">8dip</dimen> 443 444 <!-- Width of the icon in a dropdown list --> 445 <dimen name="dropdownitem_icon_width">32dip</dimen> 446 447 <!-- Default width for a textview error popup --> 448 <dimen name="textview_error_popup_default_width">240dip</dimen> 449 450 <!-- Default padding to apply to AppWidgetHostViews containing widgets targeting API level 14 and up. --> 451 <dimen name="default_app_widget_padding_left">8dp</dimen> 452 <dimen name="default_app_widget_padding_top">8dp</dimen> 453 <dimen name="default_app_widget_padding_right">8dp</dimen> 454 <dimen name="default_app_widget_padding_bottom">8dp</dimen> 455 456 <!-- Minimum width for an action button in the menu area of an action bar --> 457 <dimen name="action_button_min_width">56dip</dimen> 458 459 <!-- Maximum height for a stacked tab bar as part of an action bar --> 460 <dimen name="action_bar_stacked_max_height">48dp</dimen> 461 462 <!-- Maximum width for a stacked action bar tab. This prevents 463 action bar tabs from becoming too wide on a wide screen when only 464 a few are present. --> 465 <dimen name="action_bar_stacked_tab_max_width">180dp</dimen> 466 467 <!-- Size of notification text (see TextAppearance.StatusBar.EventContent) --> 468 <dimen name="notification_text_size">14sp</dimen> 469 <!-- Size of notification text titles (see TextAppearance.StatusBar.EventContent.Title) --> 470 <dimen name="notification_title_text_size">14sp</dimen> 471 <!-- Size of big notification text titles (see TextAppearance.StatusBar.EventContent.BigTitle) --> 472 <dimen name="notification_big_title_text_size">16sp</dimen> 473 <!-- Size of smaller notification text (see TextAppearance.StatusBar.EventContent.Line2, Info, Time) --> 474 <dimen name="notification_subtext_size">12sp</dimen> 475 <!-- Top padding for notifications in the standard layout. --> 476 <dimen name="notification_top_pad">10dp</dimen> 477 478 <!-- Top padding for notifications when narrow (i.e. it has 3 lines) --> 479 <dimen name="notification_top_pad_narrow">4dp</dimen> 480 481 <!-- Top padding for notification when text is large --> 482 <dimen name="notification_top_pad_large_text">5dp</dimen> 483 484 <!-- Top padding for notification when text is large and narrow (i.e. it has 3 lines --> 485 <dimen name="notification_top_pad_large_text_narrow">-4dp</dimen> 486 487 <!-- The margin on top of the text of the notification --> 488 <dimen name="notification_text_margin_top">6dp</dimen> 489 490 <!-- Height of a single line text view in a notification --> 491 <dimen name="notification_text_height">20sp</dimen> 492 493 <!-- The padding on top of inbox style elements --> 494 <dimen name="notification_inbox_item_top_padding">5dp</dimen> 495 496 <!-- Size of the verification icon for call notifications --> 497 <dimen name="notification_verification_icon_size">@dimen/notification_badge_size</dimen> 498 499 <!-- Size of the feedback indicator for notifications --> 500 <dimen name="notification_feedback_size">20dp</dimen> 501 502 <!-- Size of the phishing alert for notifications --> 503 <dimen name="notification_phishing_alert_size">@dimen/notification_badge_size</dimen> 504 505 <!-- Size of the profile badge for notifications --> 506 <dimen name="notification_badge_size">12dp</dimen> 507 508 <!-- Size of the alerted icon for notifications --> 509 <dimen name="notification_alerted_size">@dimen/notification_badge_size</dimen> 510 511 <!-- Keyguard dimensions --> 512 <!-- TEMP --> 513 <dimen name="kg_security_panel_height">600dp</dimen> 514 515 <!-- Height of security view in keyguard. --> 516 <dimen name="kg_security_view_height">480dp</dimen> 517 518 <!-- Width of widget view in keyguard. --> 519 <dimen name="kg_widget_view_width">0dp</dimen> 520 521 <!-- Height of widget view in keyguard. --> 522 <dimen name="kg_widget_view_height">0dp</dimen> 523 524 <!-- Size of the clock font in keyguard's status view --> 525 <dimen name="kg_status_clock_font_size">75dp</dimen> 526 527 <!-- Size of the date font in keyguard's status view --> 528 <dimen name="kg_status_date_font_size">15dp</dimen> 529 530 <!-- Size of the generic status lines keyguard's status view --> 531 <dimen name="kg_status_line_font_size">13dp</dimen> 532 533 <!-- Size of margin on the right of keyguard's status view --> 534 <dimen name="kg_status_line_font_right_margin">16dp</dimen> 535 536 <!-- Top margin for the clock view --> 537 <dimen name="kg_clock_top_margin">-16dp</dimen> 538 539 <!-- Horizontal gap between keys in PIN and SIM PIN numeric keyboards in keyguard --> 540 <dimen name="kg_key_horizontal_gap">0dp</dimen> 541 542 <!-- Horizontal gap between keys in PIN and SIM PIN numeric keyboards in keyguard --> 543 <dimen name="kg_key_vertical_gap">0dp</dimen> 544 545 <!-- Horizontal gap between keys in PIN and SIM PIN numeric keyboards in keyguard --> 546 <dimen name="kg_pin_key_height">60dp</dimen> 547 548 <!-- Space reserved at the bottom of secure views (pin/pattern/password/SIM pin/SIM puk) --> 549 <dimen name="kg_secure_padding_height">46dp</dimen> 550 551 <!-- The height of the runway lights strip --> 552 <dimen name="kg_runway_lights_height">7dp</dimen> 553 554 <!-- The height of the runway lights strip --> 555 <dimen name="kg_runway_lights_vertical_padding">2dp</dimen> 556 557 <!-- Horizontal padding for the widget pager --> 558 <dimen name="kg_widget_pager_horizontal_padding">16dp</dimen> 559 560 <!-- Top padding for the widget pager --> 561 <dimen name="kg_widget_pager_top_padding">0dp</dimen> 562 563 <!-- Bottom padding for the widget pager --> 564 <dimen name="kg_widget_pager_bottom_padding">64dp</dimen> 565 566 <!-- Top margin for the runway lights. We add a negative margin in large 567 devices to account for the widget pager padding --> 568 <dimen name="kg_runway_lights_top_margin">0dp</dimen> 569 570 <!-- Touch slop for the global toggle accessibility gesture --> 571 <dimen name="accessibility_touch_slop">80dip</dimen> 572 573 <!-- Width of the outline stroke used by the accessibility screen magnification indicator --> 574 <dimen name="accessibility_magnification_indicator_width">4dip</dimen> 575 576 <!-- Width of the outline stroke used by the accessibility focus rectangle --> 577 <dimen name="accessibility_focus_highlight_stroke_width">4dp</dimen> 578 579 <!-- The padding ratio of the Accessibility icon foreground drawable --> 580 <item name="accessibility_icon_foreground_padding_ratio" type="dimen">21.88%</item> 581 582 <!-- Margin around the various security views --> 583 <dimen name="keyguard_muliuser_selector_margin">8dp</dimen> 584 585 <!-- Stroke width of the frame for the circular avatars. --> 586 <dimen name="keyguard_avatar_frame_stroke_width">2dp</dimen> 587 588 <!-- Shadow radius under the frame for the circular avatars. --> 589 <dimen name="keyguard_avatar_frame_shadow_radius">1dp</dimen> 590 591 <!-- Size of the avator on hte multiuser lockscreen. --> 592 <dimen name="keyguard_avatar_size">66dp</dimen> 593 594 <!-- Size of the text under the avator on the multiuser lockscreen. --> 595 <dimen name="keyguard_avatar_name_size">10sp</dimen> 596 597 <!-- Size of the region along the edge of the screen that will accept 598 swipes to scroll the widget area. --> 599 <dimen name="kg_edge_swipe_region_size">24dp</dimen> 600 601 <!-- If the height if keyguard drops below this threshold (most likely 602 due to the appearance of the IME), then drop the multiuser selector. --> 603 <dimen name="kg_squashed_layout_threshold">600dp</dimen> 604 605 <!-- The height of widgets which do not support vertical resizing. This is only 606 used on tablets; on phones, this size is determined by the space left by the 607 security mode. --> 608 <dimen name="kg_small_widget_height">160dp</dimen> 609 610 <!-- Rounded corner radius for video subtitles. --> 611 <dimen name="subtitle_corner_radius">2dp</dimen> 612 613 <!-- Shadow radius for video subtitles. --> 614 <dimen name="subtitle_shadow_radius">2dp</dimen> 615 616 <!-- Shadow offset for video subtitles. --> 617 <dimen name="subtitle_shadow_offset">2dp</dimen> 618 619 <!-- Outline width for video subtitles. --> 620 <dimen name="subtitle_outline_width">2dp</dimen> 621 622 <!-- Minimum size of the fast scroller thumb's touch target. --> 623 <dimen name="fast_scroller_minimum_touch_target">48dp</dimen> 624 625 <!-- width of ImmersiveModeConfirmation (-1 for match_parent) --> 626 <dimen name="immersive_mode_cling_width">-1px</dimen> 627 628 <dimen name="resolver_max_width">480dp</dimen> 629 630 <!-- Tile Stroke width --> 631 <dimen name="config_qsTileStrokeWidthActive">-1dp</dimen> 632 <dimen name="config_qsTileStrokeWidthInactive">-1dp</dimen> 633 634 <!-- Amount to reduce the size of the circular mask by (to compensate for 635 aliasing effects). This is only used on circular displays. --> 636 <dimen name="circular_display_mask_thickness">1px</dimen> 637 638 <dimen name="lock_pattern_dot_line_width">22dp</dimen> 639 <dimen name="lock_pattern_dot_size">14dp</dimen> 640 <dimen name="lock_pattern_dot_size_activated">30dp</dimen> 641 642 <dimen name="text_handle_min_size">40dp</dimen> 643 644 <!-- Lighting and shadow properties --> 645 <dimen name="light_y">0dp</dimen> 646 <dimen name="light_z">600dp</dimen> 647 <dimen name="light_radius">800dp</dimen> 648 <item type="dimen" format="float" name="ambient_shadow_alpha">0.039</item> 649 <item type="dimen" format="float" name="spot_shadow_alpha">0.19</item> 650 651 <!-- Floating toolbar dimensions --> 652 <dimen name="floating_toolbar_height">48dp</dimen> 653 <dimen name="floating_toolbar_menu_image_width">24dp</dimen> 654 <dimen name="floating_toolbar_menu_image_button_width">56dp</dimen> 655 <dimen name="floating_toolbar_menu_image_button_vertical_padding">12dp</dimen> 656 <dimen name="floating_toolbar_menu_button_side_padding">11dp</dimen> 657 <dimen name="floating_toolbar_overflow_image_button_width">60dp</dimen> 658 <dimen name="floating_toolbar_overflow_side_padding">18dp</dimen> 659 <dimen name="floating_toolbar_text_size">14sp</dimen> 660 <dimen name="floating_toolbar_menu_button_minimum_width">48dp</dimen> 661 <dimen name="floating_toolbar_preferred_width">400dp</dimen> 662 <dimen name="floating_toolbar_minimum_overflow_height">96dp</dimen> 663 <dimen name="floating_toolbar_maximum_overflow_height">192dp</dimen> 664 <dimen name="floating_toolbar_horizontal_margin">16dp</dimen> 665 <dimen name="floating_toolbar_vertical_margin">8dp</dimen> 666 <dimen name="content_rect_bottom_clip_allowance">20dp</dimen> 667 <dimen name="floating_toolbar_icon_text_spacing">8dp</dimen> 668 669 <!-- Magnifier dimensions --> 670 <dimen name="default_magnifier_width">100dp</dimen> 671 <dimen name="default_magnifier_height">48dp</dimen> 672 <dimen name="default_magnifier_elevation">4dp</dimen> 673 <dimen name="default_magnifier_corner_radius">2dp</dimen> 674 <dimen name="default_magnifier_vertical_offset">-42dp</dimen> 675 <dimen name="default_magnifier_horizontal_offset">0dp</dimen> 676 <item type="dimen" format="float" name="default_magnifier_zoom">1.25</item> 677 678 <!-- Spacing around the background change frome service to non-service --> 679 <dimen name="chooser_service_spacing">8dp</dimen> 680 681 <item type="dimen" name="aerr_padding_list_top">15dp</item> 682 <item type="dimen" name="aerr_padding_list_bottom">8dp</item> 683 684 <item type="fraction" name="docked_stack_divider_fixed_ratio">34.15%</item> 685 686 <dimen name="resize_shadow_size">5dp</dimen> 687 688 <!-- The default minimal size of a resizable task, in both dimensions. --> 689 <dimen name="default_minimal_size_resizable_task">220dp</dimen> 690 691 <!-- The default minimal size of a PiP task, in both dimensions. --> 692 <dimen name="default_minimal_size_pip_resizable_task">108dp</dimen> 693 694 <!-- 695 The overridable minimal size of a PiP task, in both dimensions. 696 Different from default_minimal_size_pip_resizable_task, this is to limit the dimension 697 when the pinned stack size is overridden by app via minWidth/minHeight. 698 --> 699 <dimen name="overridable_minimal_size_pip_resizable_task">48dp</dimen> 700 701 <!-- Height of a task when in minimized mode from the top when launcher is resizable. --> 702 <dimen name="task_height_of_minimized_mode">80dp</dimen> 703 704 <!-- Minimum "smallest width" of the display for cascading menus to be enabled. --> 705 <dimen name="cascading_menus_min_smallest_width">720dp</dimen> 706 707 <!-- Tooltip dimensions. --> 708 <!-- Vertical offset from the edge of the anchor view for a touch-triggered tooltip. --> 709 <dimen name="tooltip_y_offset_touch">16dp</dimen> 710 <!-- Vertical offset from the edge of the anchor view for a non-touch-triggered tooltip. --> 711 <dimen name="tooltip_y_offset_non_touch">0dp</dimen> 712 <!-- The tooltip does not get closer than this to the window edge --> 713 <dimen name="tooltip_margin">8dp</dimen> 714 <!-- Left/right padding of the tooltip text. --> 715 <dimen name="tooltip_horizontal_padding">16dp</dimen> 716 <!-- Top/bottom padding of the tooltip text. --> 717 <dimen name="tooltip_vertical_padding">6.5dp</dimen> 718 <!-- Border corner radius of the tooltip window. --> 719 <dimen name="tooltip_corner_radius">2dp</dimen> 720 <!-- View with the height equal or above this threshold will have a tooltip anchored 721 to the mouse/touch position --> 722 <dimen name="tooltip_precise_anchor_threshold">96dp</dimen> 723 <!-- Extra tooltip offset used when anchoring to the mouse/touch position --> 724 <dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen> 725 726 <!-- The max amount of scroll ItemTouchHelper will trigger if dragged view is out of 727 RecyclerView's bounds.--> 728 <dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen> 729 <dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen> 730 <dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen> 731 732 <!-- The maximum height of any image in a remote view. This is applied to all images in custom remoteviews. This value is determined by the maximum notification height --> 733 <dimen name="notification_custom_view_max_image_height">284dp</dimen> 734 <!-- The maximum height of any image in a remote view. This is applied to all images in custom remoteviews. This value is determined a maximum notification width --> 735 <dimen name="notification_custom_view_max_image_width">450dp</dimen> 736 <!-- The maximum height of a big picture in a notification. The images will be reduced to that height in case they are bigger. This value is determined by the maximum notification height --> 737 <dimen name="notification_big_picture_max_height">284dp</dimen> 738 <!-- The maximum width of a big picture in a notification. The images will be reduced to that width in case they are bigger. This value is determined by the standard panel size --> 739 <dimen name="notification_big_picture_max_width">416dp</dimen> 740 <!-- The size of the right icon --> 741 <dimen name="notification_right_icon_size">48dp</dimen> 742 <!-- The margin between the right icon and the content. --> 743 <dimen name="notification_right_icon_content_margin">12dp</dimen> 744 <!-- The top and bottom margin of the right icon in the normal notification states --> 745 <dimen name="notification_right_icon_headerless_margin">20dp</dimen> 746 <!-- The top margin of the right icon in the "big" notification states --> 747 <!-- TODO(b/181048615): Move the large icon below the expander in big states --> 748 <dimen name="notification_right_icon_big_margin_top">16dp</dimen> 749 <!-- The size of the left icon --> 750 <dimen name="notification_left_icon_size">@dimen/notification_icon_circle_size</dimen> 751 <!-- The left padding of the left icon --> 752 <dimen name="notification_left_icon_start">@dimen/notification_icon_circle_start</dimen> 753 <!-- The alpha of a disabled notification button --> 754 <item type="dimen" format="float" name="notification_action_disabled_alpha">0.5</item> 755 756 <!-- The maximum height of any image in a remote view. This is applied to all images in custom remoteviews. --> 757 <dimen name="notification_custom_view_max_image_height_low_ram">208dp</dimen> 758 <!-- The maximum height of any image in a remote view. This is applied to all images in custom remoteviews. --> 759 <dimen name="notification_custom_view_max_image_width_low_ram">294dp</dimen> 760 <!-- The maximum height of a big picture in a notification. The images will be reduced to that height in case they are bigger. --> 761 <dimen name="notification_big_picture_max_height_low_ram">208dp</dimen> 762 <!-- The maximum width of a big picture in a notification. The images will be reduced to that width in case they are bigger. --> 763 <dimen name="notification_big_picture_max_width_low_ram">294dp</dimen> 764 <!-- The size of the right icon image when on low ram --> 765 <dimen name="notification_right_icon_size_low_ram">@dimen/notification_right_icon_size</dimen> 766 <!-- The maximum size of the grayscale icon --> 767 <dimen name="notification_grayscale_icon_max_size">256dp</dimen> 768 769 <dimen name="messaging_avatar_size">48dp</dimen> 770 <dimen name="conversation_avatar_size">48dp</dimen> 771 <!-- start margin of the icon circle in the conversation's skin of the header --> 772 <dimen name="conversation_icon_circle_start">28dp</dimen> 773 <!-- Start of the content in the conversation template --> 774 <dimen name="conversation_content_start">80dp</dimen> 775 <!-- Height of the expand button in the conversation layout --> 776 <dimen name="conversation_expand_button_height">88dp</dimen> 777 <!-- this is the margin between the Conversation image and the content --> 778 <dimen name="conversation_image_start_margin">12dp</dimen> 779 <!-- amount the badge sticks out from the conversation avatar --> 780 <dimen name="conversation_badge_protrusion">4dp</dimen> 781 <!-- size of the notification badge when applied to the conversation icon --> 782 <dimen name="conversation_icon_size_badged">20dp</dimen> 783 <!-- size of the conversation avatar in an expanded group --> 784 <dimen name="conversation_avatar_size_group_expanded">@dimen/messaging_avatar_size</dimen> 785 <!-- size of the face pile icons --> 786 <dimen name="conversation_face_pile_avatar_size">32dp</dimen> 787 <!-- size of the face pile icons when the group is expanded --> 788 <dimen name="conversation_face_pile_avatar_size_group_expanded">@dimen/conversation_face_pile_avatar_size</dimen> 789 <!-- amount the badge sticks out from the conversation avatar when the group is expanded --> 790 <dimen name="conversation_badge_protrusion_group_expanded">@dimen/conversation_badge_protrusion</dimen> 791 <!-- amount the badge sticks out from the conversation face pile when the group is expanded --> 792 <dimen name="conversation_badge_protrusion_group_expanded_face_pile">@dimen/conversation_badge_protrusion</dimen> 793 <!-- The width of the protection of the face pile layout--> 794 <dimen name="conversation_face_pile_protection_width">2dp</dimen> 795 <!-- The width of the protection of the face pile layout when expanded--> 796 <dimen name="conversation_face_pile_protection_width_expanded">@dimen/conversation_face_pile_protection_width</dimen> 797 <!-- The padding of the expanded message container--> 798 <dimen name="expanded_group_conversation_message_padding">32dp</dimen> 799 <!-- The stroke width of the ring used to visually mark a conversation as important --> 800 <dimen name="importance_ring_stroke_width">2dp</dimen> 801 <!-- The maximum stroke width used for the animation shown when a conversation is marked as important --> 802 <dimen name="importance_ring_anim_max_stroke_width">10dp</dimen> 803 <!-- The size of the importance ring --> 804 <dimen name="importance_ring_size">20dp</dimen> 805 806 <!-- The top padding of the conversation icon container in the regular state--> 807 <dimen name="conversation_icon_container_top_padding">20dp</dimen> 808 809 <!-- The top padding of the conversation icon container when the avatar is small--> 810 <dimen name="conversation_icon_container_top_padding_small_avatar">8dp</dimen> 811 812 <!-- The padding of the conversation header when expanded. This is calculated from the expand button size (56dp) - notification_content_margin_end (16dp) --> 813 <dimen name="conversation_header_expanded_padding_end">40dp</dimen> 814 815 <!-- extra padding at the start of the icons when not conversations to keep them horizontally aligned with the notification icon --> 816 <dimen name="messaging_layout_icon_padding_start">4dp</dimen> 817 818 <!-- Padding between text and sender when singleline --> 819 <dimen name="messaging_group_singleline_sender_padding_end">4dp</dimen> 820 821 <dimen name="messaging_group_sending_progress_size">24dp</dimen> 822 823 <!-- Max width/height of the autofill data set picker as a fraction of the screen width/height --> 824 <dimen name="autofill_dataset_picker_max_width">90%</dimen> 825 <dimen name="autofill_dataset_picker_max_height">90%</dimen> 826 827 <!-- Autofill save dialog padding --> 828 <dimen name="autofill_save_outer_top_margin">32dp</dimen> 829 <dimen name="autofill_save_outer_top_padding">16dp</dimen> 830 <dimen name="autofill_elevation">32dp</dimen> 831 <dimen name="autofill_save_inner_padding">16dp</dimen> 832 <dimen name="autofill_save_icon_size">24dp</dimen> 833 <dimen name="autofill_save_title_start_padding">8dp</dimen> 834 <dimen name="autofill_save_scroll_view_top_margin">4dp</dimen> 835 <dimen name="autofill_save_button_bar_padding">16dp</dimen> 836 837 <!-- Max height of the the autofill save custom subtitle as a fraction of the screen width/height --> 838 <dimen name="autofill_save_custom_subtitle_max_height">20%</dimen> 839 840 <!-- Max (absolute) dimensions (both width and height) of autofill service icon on autofill save affordance. 841 NOTE: the actual displayed size might is actually smaller than this and is hardcoded in the 842 autofill_save.xml layout; this dimension is just used to avoid a crash in the UI (if the icon provided 843 by the autofill service metadata is bigger than these dimentionsit will not be displayed). 844 --> 845 <dimen name="autofill_save_icon_max_size">300dp</dimen> 846 847 <!-- Maximum number of datasets that are visible in the UX picker without scrolling --> 848 <integer name="autofill_max_visible_datasets">3</integer> 849 850 <!-- Size of a slice shortcut view --> 851 <dimen name="slice_shortcut_size">56dp</dimen> 852 <!-- Size of action icons in a slice --> 853 <dimen name="slice_icon_size">24dp</dimen> 854 <!-- Standard padding used in a slice view --> 855 <dimen name="slice_padding">16dp</dimen> 856 857 <!-- Default dialog corner radius --> 858 <dimen name="dialog_corner_radius">2dp</dimen> 859 860 <!-- Size of thumbnail used in the cross profile apps animation --> 861 <dimen name="cross_profile_apps_thumbnail_size">72dp</dimen> 862 863 <!-- Padding between the title and content in the harmful app dialog --> 864 <dimen name="harmful_app_padding_top">10dp</dimen> 865 <!-- Bottom padding for the "app name" section of the harmful app dialog --> 866 <dimen name="harmful_app_name_padding_bottom">20dp</dimen> 867 <!-- Left padding for the "app name" section of the harmful app dialog --> 868 <dimen name="harmful_app_name_padding_left">24dp</dimen> 869 <!-- Right padding for the "app name" section of the harmful app dialog --> 870 <dimen name="harmful_app_name_padding_right">24dp</dimen> 871 <!-- Top padding for the "app name" section of the harmful app dialog --> 872 <dimen name="harmful_app_name_padding_top">8dp</dimen> 873 <!-- Padding between the icon and app name in the harmful app dialog --> 874 <dimen name="harmful_app_icon_name_padding">20dp</dimen> 875 <!-- The size of the icon on the harmful app dialog --> 876 <dimen name="harmful_app_icon_size">44dp</dimen> 877 <!-- Left padding for the message section of the harmful app dialog --> 878 <dimen name="harmful_app_message_padding_left">24dp</dimen> 879 <!-- Right padding for the message section of the harmful app dialog --> 880 <dimen name="harmful_app_message_padding_right">24dp</dimen> 881 <!-- Bottom padding for the message section of the harmful app dialog --> 882 <dimen name="harmful_app_message_padding_bottom">24dp</dimen> 883 <!-- Line spacing modifier for the message field of the harmful app dialog --> 884 <item name="harmful_app_message_line_spacing_modifier" type="dimen">1.22</item> 885 886 <dimen name="seekbar_thumb_exclusion_max_size">48dp</dimen> 887 888 <!-- chooser/resolver (sharesheet) spacing --> 889 <dimen name="chooser_corner_radius">16dp</dimen> 890 <dimen name="chooser_row_text_option_translate">25dp</dimen> 891 <dimen name="chooser_view_spacing">18dp</dimen> 892 <dimen name="chooser_edge_margin_thin">16dp</dimen> 893 <dimen name="chooser_edge_margin_normal">24dp</dimen> 894 <dimen name="chooser_preview_image_font_size">20sp</dimen> 895 <dimen name="chooser_preview_image_border">1dp</dimen> 896 <dimen name="chooser_preview_image_max_dimen">200dp</dimen> 897 <dimen name="chooser_preview_width">-1px</dimen> 898 <dimen name="chooser_header_scroll_elevation">4dp</dimen> 899 <dimen name="chooser_max_collapsed_height">288dp</dimen> 900 <dimen name="chooser_direct_share_label_placeholder_max_width">72dp</dimen> 901 <dimen name="chooser_icon_size">56dp</dimen> 902 <dimen name="chooser_badge_size">22dp</dimen> 903 <dimen name="resolver_icon_size">32dp</dimen> 904 <dimen name="resolver_button_bar_spacing">0dp</dimen> 905 <dimen name="resolver_badge_size">18dp</dimen> 906 <dimen name="resolver_icon_margin">16dp</dimen> 907 <dimen name="resolver_small_margin">18dp</dimen> 908 <dimen name="resolver_edge_margin">24dp</dimen> 909 <dimen name="resolver_elevation">1dp</dimen> 910 <dimen name="resolver_empty_state_height">212dp</dimen> 911 <dimen name="resolver_empty_state_height_with_tabs">268dp</dimen> 912 <dimen name="resolver_max_collapsed_height">192dp</dimen> 913 <dimen name="resolver_max_collapsed_height_with_tabs">268dp</dimen> 914 <dimen name="resolver_max_collapsed_height_with_default">144dp</dimen> 915 <dimen name="resolver_max_collapsed_height_with_default_with_tabs">300dp</dimen> 916 <dimen name="resolver_tab_text_size">14sp</dimen> 917 <dimen name="resolver_title_padding_bottom">0dp</dimen> 918 <dimen name="resolver_empty_state_container_padding_top">8dp</dimen> 919 <dimen name="resolver_empty_state_container_padding_bottom">8dp</dimen> 920 921 <dimen name="chooser_action_button_icon_size">18dp</dimen> 922 923 <!-- For Waterfall Display --> 924 <dimen name="waterfall_display_left_edge_size">0px</dimen> 925 <dimen name="waterfall_display_top_edge_size">0px</dimen> 926 <dimen name="waterfall_display_right_edge_size">0px</dimen> 927 <dimen name="waterfall_display_bottom_edge_size">0px</dimen> 928 929 <dimen name="default_background_blur_radius">100dp</dimen> 930 <!-- The maximum height of a thumbnail in a ThumbnailTemplate. The image will be reduced to that height in case they are bigger. --> 931 <dimen name="controls_thumbnail_image_max_height">140dp</dimen> 932 <!-- The maximum width of a thumbnail in a ThumbnailTemplate. The image will be reduced to that width in case they are bigger.--> 933 <dimen name="controls_thumbnail_image_max_width">280dp</dimen> 934 935 <!-- System-provided radius for the background view of app widgets. The resolved value of this resource may change at runtime. --> 936 <dimen name="system_app_widget_background_radius">16dp</dimen> 937 <!-- System-provided radius for inner views on app widgets. The resolved value of this resource may change at runtime. --> 938 <dimen name="system_app_widget_inner_radius">8dp</dimen> 939 <!-- System-provided padding for inner views on app widgets. The resolved value of this resource may change at runtime. @removed --> 940 <dimen name="__removed_system_app_widget_internal_padding">16dp</dimen> 941 942 <!-- The width/height of the icon view on staring surface. --> 943 <dimen name="starting_surface_icon_size">160dp</dimen> 944 <!-- The default width/height of the icon on the spec of adaptive icon drawable. --> 945 <dimen name="starting_surface_default_icon_size">108dp</dimen> 946</resources> 947