zeus: overlay: Add corner content padding
Change-Id: Iee6fe4fea0d00235d15c3c0ab0c742d1e315001d
This commit is contained in:
parent
85b3cab69c
commit
b1c70f21dd
4 changed files with 29 additions and 0 deletions
|
@ -14,6 +14,7 @@ $(call inherit-product, vendor/xiaomi/zeus/zeus-vendor.mk)
|
|||
PRODUCT_PACKAGES += \
|
||||
FrameworksResZeus \
|
||||
SettingsProviderResZeus \
|
||||
SystemUIResZeus \
|
||||
WifiResZeus
|
||||
|
||||
# Soong namespaces
|
||||
|
|
10
overlay/SystemUI/Android.bp
Normal file
10
overlay/SystemUI/Android.bp
Normal file
|
@ -0,0 +1,10 @@
|
|||
//
|
||||
// Copyright (C) 2022 The LineageOS Project
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "SystemUIResZeus",
|
||||
device_specific: true,
|
||||
}
|
10
overlay/SystemUI/AndroidManifest.xml
Normal file
10
overlay/SystemUI/AndroidManifest.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.systemui.overlay.zeus">
|
||||
<overlay android:targetPackage="com.android.systemui"
|
||||
android:isStatic="true"
|
||||
android:priority="700"/>
|
||||
</manifest>
|
8
overlay/SystemUI/res/values/dimens.xml
Normal file
8
overlay/SystemUI/res/values/dimens.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2023 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<dimen name="rounded_corner_content_padding">52.0px</dimen>
|
||||
</resources>
|
Loading…
Reference in a new issue