CameraKit / blurkit-android

The missing Android blurring library. Fast blur-behind layout that parallels iOS.
MIT License
3.72k stars 309 forks source link

Blur appears with a bottom padding #53

Open Quentin1010 opened 5 years ago

Quentin1010 commented 5 years ago

I have Textview inside a BlurLayout inside a RelativeLayout looking like this:

<io.alterac.blurkit.BlurLayout android:id="@+id/fe_blue_layout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:layout_alignParentBottom="true">

</io.alterac.blurkit.BlurLayout>

No matter the padding or the margin that I put on the TextView, it only blur a thin line on top of the BlurLayout. What is weird is that you can see that the whole BlurLayout space is squished and blurred in that thin line.

Looks like #34 or #21 but nothing solved it. Help ^^'

Edit: Is it because I'm inside a Fragment instead of an Activity?