We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The layout is very sample:
<FrameLayout android:id="@+id/save_pic" android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:id="@+id/pic_holder" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerCrop" android:src="@mipmap/share_pic_1" /> <com.github.mmin18.widget.RealtimeBlurView android:id="@+id/blur_view" android:layout_width="match_parent" android:layout_height="match_parent" app:realtimeBlurRadius="10dp" app:realtimeOverlayColor="#4DFFFFFF" /> </FrameLayout>
Then, I want to the framelayout execute a scale animator.
View savePic = findViewById(R.id.save_pic); savePic.animate().scaleX(0.8f).scaleY(0.8f).start();
Finally,I found the bottom and right part of the layout had no blur effect.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The layout is very sample:
Then, I want to the framelayout execute a scale animator.
Finally,I found the bottom and right part of the layout had no blur effect.
The text was updated successfully, but these errors were encountered: