diff options
| author | kleidione Freitas <kleidione@gmail.com> | 2022-06-30 12:13:58 -0300 | 
|---|---|---|
| committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-05 21:30:23 +0530 | 
| commit | 207dbbae90d1b2127cd24a86eb9dbe371e99a503 (patch) | |
| tree | d1a1f2afee9e354d6331ff5698c407660b82ffcd /rro_overlays/SystemUIOverlayVeux | |
| parent | 25ca85dff5066c12095bc97af069cf7c653f5f8f (diff) | |
veux: overlay: Improved margin and status bar padding
Signed-off-by: kleidione <kleidione@gmail.com>
Diffstat (limited to 'rro_overlays/SystemUIOverlayVeux')
| -rw-r--r-- | rro_overlays/SystemUIOverlayVeux/res/values/dimens.xml | 25 | 
1 files changed, 23 insertions, 2 deletions
| diff --git a/rro_overlays/SystemUIOverlayVeux/res/values/dimens.xml b/rro_overlays/SystemUIOverlayVeux/res/values/dimens.xml index 4d3c0d1..38b188a 100644 --- a/rro_overlays/SystemUIOverlayVeux/res/values/dimens.xml +++ b/rro_overlays/SystemUIOverlayVeux/res/values/dimens.xml @@ -1,6 +1,7 @@  <?xml version="1.0" encoding="utf-8"?>  <!-- - * Copyright (c) 2006, The Android Open Source Project +/** + * Copyright (c) 2015, The Android Open Source Project   *   * Licensed under the Apache License, Version 2.0 (the "License");   * you may not use this file except in compliance with the License. @@ -13,10 +14,30 @@   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   * See the License for the specific language governing permissions and   * limitations under the License. -*/ + */  -->  <resources> +    <!-- the padding on the top of the statusbar (usually 0) --> +    <dimen name="status_bar_padding_top">7dp</dimen> + +    <!-- the padding on the start of the statusbar --> +    <dimen name="status_bar_padding_start">7dp</dimen> + +    <!-- the padding on the end of the statusbar --> +    <dimen name="status_bar_padding_end">0dp</dimen> + +    <!-- Margin on the left side of the carrier text on Keyguard --> +    <dimen name="keyguard_carrier_text_margin">21dp</dimen> + +    <!-- Margin on the right side of the system icon group on Keyguard. --> +    <dimen name="system_icons_keyguard_padding_end">0dp</dimen> + +    <!-- Height of the status bar header bar when on Keyguard --> +    <dimen name="status_bar_header_height_keyguard">@*android:dimen/status_bar_height_portrait</dimen> + +    <!-- rounded corner content padding --> +    <dimen name="rounded_corner_content_padding">7dp</dimen>      <!-- Location on the screen of the center of the fingerprint sensor. For devices with under       display fingerprint sensors, this directly corresponds to the fingerprint sensor's location. | 
