BlurKit doesn't blur the whole width of screen
See original GitHub issueBlurkit doesn’t blur the whole width of screen in constraint layout. the last portion of the screen on the right is not blurred.And changing the blur radius doesn’t affect it.
<io.alterac.blurkit.BlurLayout
android:id="@+id/blurLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:blk_fps="0"
app:blk_blurRadius="7"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
Here is a screenshot:
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:5
Top Results From Across the Web
Transparent blurry view which blurs layout underneath
An alternative to this is to create a Bitmap using the dimensions of the view you need to blur: Bitmap toDrawOn = Bitmap.createBitmap(viewWidth,...
Read more >BlurKit Implementation and Features - v1.0.0 - YouTube
BlurKit is an easy to use and performant utility to render real-time blur effects in Android. This tutorial covers the setup and features...
Read more >blur() - CSS: Cascading Style Sheets - MDN Web Docs - Mozilla
The blur() CSS function applies a Gaussian blur to the input image. ... i.e., how many pixels on the screen blend into each...
Read more >BECCA Prep & Set Brightening Blur Kit-BNIB/Sealed - eBay
BECCA Prep & Set Brightening Blur Kit-BNIB/Sealed -Travel Size*. ... BECCA Cosmetics Prep & Set Blur Kit Primer & Powder NIB ... Does...
Read more >Use the Blur Gallery in Photoshop - Adobe Support
Photoshop provides a full-size, live preview when you work with the Blur Gallery effects. Choose Filter > Blur Gallery and then select the ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I fixed this calling an invalidate right after my image is loaded (i’m using a dynamic image retrieved by Picasso) and it working well to me
This will pause the blur after 300ms and it should blur the whole width of the screen
new Handler().postDelayed(() -> {
blurLayout.setFPS(0);
blurLayout.lockView();
blurLayout.invalidate();
}, 300);