dre: overlay: Reduce blur radius
Change-Id: Id6339df82156099ca14da684f236931b3ecf51ce Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
This commit is contained in:
parent
aa1b1e94ee
commit
a160445e51
5 changed files with 37 additions and 0 deletions
|
|
@ -244,6 +244,7 @@ PRODUCT_ENFORCE_RRO_TARGETS := *
|
||||||
PRODUCT_PACKAGES += \
|
PRODUCT_PACKAGES += \
|
||||||
CarrierConfigResCommon \
|
CarrierConfigResCommon \
|
||||||
FrameworksResTarget \
|
FrameworksResTarget \
|
||||||
|
Launcher3ResTarget \
|
||||||
NcmTetheringOverlay \
|
NcmTetheringOverlay \
|
||||||
OPlusFrameworksResTarget \
|
OPlusFrameworksResTarget \
|
||||||
OPlusSettingsProviderResTarget \
|
OPlusSettingsProviderResTarget \
|
||||||
|
|
|
||||||
9
overlay/Launcher3ResTarget/Android.bp
Normal file
9
overlay/Launcher3ResTarget/Android.bp
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
//
|
||||||
|
// Copyright (C) 2022 The LineageOS Project
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
//
|
||||||
|
|
||||||
|
runtime_resource_overlay {
|
||||||
|
name: "Launcher3ResTarget",
|
||||||
|
product_specific: true,
|
||||||
|
}
|
||||||
13
overlay/Launcher3ResTarget/AndroidManifest.xml
Normal file
13
overlay/Launcher3ResTarget/AndroidManifest.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
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.launcher.overlay.oplus">
|
||||||
|
|
||||||
|
<overlay
|
||||||
|
android:isStatic="true"
|
||||||
|
android:priority="300"
|
||||||
|
android:targetPackage="com.android.launcher3" />
|
||||||
|
</manifest>
|
||||||
11
overlay/Launcher3ResTarget/res/values/config.xml
Normal file
11
overlay/Launcher3ResTarget/res/values/config.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2022 The LineageOS Project
|
||||||
|
SPDX-License-Identifier: Apache-2.0
|
||||||
|
-->
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<integer name="max_depth_blur_radius">11</integer>
|
||||||
|
<dimen name="max_depth_blur_radius_enhanced">15dp</dimen>
|
||||||
|
|
||||||
|
</resources>
|
||||||
|
|
@ -53,4 +53,7 @@
|
||||||
<!-- Location on the screen of the center of the physical power button. This is a reasonable
|
<!-- Location on the screen of the center of the physical power button. This is a reasonable
|
||||||
default that should be overridden by device-specific overlays. -->
|
default that should be overridden by device-specific overlays. -->
|
||||||
<dimen name="physical_power_button_center_screen_location_y">930px</dimen>
|
<dimen name="physical_power_button_center_screen_location_y">930px</dimen>
|
||||||
|
|
||||||
|
<!-- Blur radius behind Notification Shade -->
|
||||||
|
<dimen name="max_shade_window_blur_radius">17dp</dimen>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue