[app] Make lint happy (#869)

This commit is contained in:
vvb2060 2021-08-07 21:58:45 +08:00 committed by GitHub
parent 7ea7f9e9b6
commit 388921323c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,6 @@
package org.lsposed.manager.ui.dialog; package org.lsposed.manager.ui.dialog;
import android.animation.ValueAnimator; import android.animation.ValueAnimator;
import android.annotation.SuppressLint;
import android.content.Context; import android.content.Context;
import android.os.Build; import android.os.Build;
import android.view.SurfaceControl; import android.view.SurfaceControl;
@ -29,11 +28,11 @@ import android.view.animation.DecelerateInterpolator;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AlertDialog;
import androidx.core.os.BuildCompat;
import java.lang.reflect.Method; import java.lang.reflect.Method;
@SuppressWarnings({"JavaReflectionMemberAccess", "ConstantConditions"}) @SuppressWarnings({"JavaReflectionMemberAccess", "ConstantConditions"})
@SuppressLint("PrivateApi")
public class BlurBehindDialogBuilder extends AlertDialog.Builder { public class BlurBehindDialogBuilder extends AlertDialog.Builder {
private static final boolean supportBlur = getSystemProperty("ro.surface_flinger.supports_background_blur", false) && !getSystemProperty("persist.sys.sf.disable_blurs", false); private static final boolean supportBlur = getSystemProperty("ro.surface_flinger.supports_background_blur", false) && !getSystemProperty("persist.sys.sf.disable_blurs", false);
@ -55,7 +54,7 @@ public class BlurBehindDialogBuilder extends AlertDialog.Builder {
animator.setInterpolator(new DecelerateInterpolator()); animator.setInterpolator(new DecelerateInterpolator());
animator.setDuration(150); animator.setDuration(150);
View view = dialog.getWindow().getDecorView(); View view = dialog.getWindow().getDecorView();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S || Build.VERSION.SDK_INT == Build.VERSION_CODES.R && Build.VERSION.PREVIEW_SDK_INT != 0) { if (BuildCompat.isAtLeastS()) {
animator.addUpdateListener(animation -> dialog.getWindow().setBackgroundBlurRadius((Integer) animation.getAnimatedValue())); animator.addUpdateListener(animation -> dialog.getWindow().setBackgroundBlurRadius((Integer) animation.getAnimatedValue()));
} else { } else {
try { try {