* Correct pixel_pitch * Make AndroidManifest consistent * Fix spacing and newlines * Correct comments * Sort as per AOSP order * Correct array types * Remove overlays that no longer exist: config_scrollBarrierVibePattern physical_volume_up_button_center_screen_location_y physical_volume_down_button_center_screen_location_y system_icons_keyguard_padding_end * Remove overlays that are the same as defaults: config_deviceHardwareKeys config_deviceHardwareWakeKeys config_udfpsColor * Remove overlays that shouldn't be overlaid anymore: quick_qs_offset_height * Move config_showUsbPortAlarm to common Change-Id: I504039ea2646b12a5af6f3c040236459ee7ac772
26 lines
1 KiB
XML
26 lines
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
SPDX-FileCopyrightText: 2022-2025 The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<resources>
|
|
<!-- The default height of the status bar used in {@link SystemBarUtils#getStatusBarHeight} to
|
|
calculate the status bar height. -->
|
|
<dimen name="status_bar_height_default">28dp</dimen>
|
|
|
|
<!-- Height of the status bar in portrait.
|
|
Do not read this dimen directly. Use {@link SystemBarUtils#getStatusBarHeight} instead.
|
|
-->
|
|
<dimen name="status_bar_height_portrait">130px</dimen>
|
|
|
|
<!-- Height of the status bar in landscape.
|
|
Do not read this dimen directly. Use {@link SystemBarUtils#getStatusBarHeight} instead.
|
|
-->
|
|
<dimen name="status_bar_height_landscape">28dp</dimen>
|
|
|
|
<!-- Default radius of the software rounded corners. -->
|
|
<dimen name="rounded_corner_radius">95.0px</dimen>
|
|
|
|
<!-- Default paddings for content around the corners. -->
|
|
<dimen name="rounded_corner_content_padding">14dp</dimen>
|
|
</resources>
|