shusky: fix padding in status bar

Change-Id: If82b831c0267e732f545d92eec290d55f49c9972
This commit is contained in:
Michael Bestas 2024-10-27 10:07:57 +02:00
parent c493d36e07
commit faae540c97
No known key found for this signature in database
4 changed files with 30 additions and 0 deletions

View file

@ -23,6 +23,9 @@
<dimen name="rounded_corner_radius_top">91px</dimen>
<dimen name="rounded_corner_radius_bottom">91px</dimen>
<!-- Default paddings for content around the corners. -->
<dimen name="rounded_corner_content_padding">16dp</dimen>
<!-- Height of the status bar.
Do not read this dimen directly. Use {@link SystemBarUtils#getStatusBarHeight} instead.
-->

View file

@ -16,6 +16,18 @@
*/
-->
<resources>
<!-- the padding on the start of the statusbar -->
<dimen name="status_bar_padding_start">0dp</dimen>
<!-- Height of the status bar header bar when on Keyguard (match status_bar_height) -->
<dimen name="status_bar_header_height_keyguard">@*android:dimen/status_bar_height</dimen>
<!-- Margin on the left side of the carrier text on Keyguard -->
<dimen name="keyguard_carrier_text_margin">@dimen/status_bar_padding_start</dimen>
<!-- Total minimum padding to enforce to ensure that the dot can always show -->
<dimen name="ongoing_appops_dot_min_padding">16dp</dimen>
<!-- Location on the screen of the center of the physical power button. -->
<dimen name="physical_power_button_center_screen_location_y">774px</dimen>