You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -82,15 +74,15 @@ In the `Main_Activity.java` you need to override the `onStart()` and `onStop()`
82
74
83
75
@Override
84
76
protectedvoid onStop() {
85
-
super.onStop();
86
77
blurLayout.pauseBlur();
78
+
super.onStop();
87
79
}
88
80
```
89
81
90
82
The layout background will continuously blur the content behind it. If you know your background content will be somewhat static, you can set the layout `fps` to `0`. At any time you can re-blur the background content by calling `invalidate()` on the `BlurLayout`.
@@ -100,7 +92,7 @@ The layout background will continuously blur the content behind it. If you know
100
92
Other attributes you can configure are the blur radius and the downscale factor. Getting these to work together well can take some experimentation. The downscale factor is a performance optimization; the bitmap for the background content will be downsized by this factor before being drawn and blurred.
0 commit comments