-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
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
ripple effect #2
Comments
Hi, I will think about it a bit and let you know. I don't want to use any support libraries for this implementation and in
|
+1 Should be a great lead for you : https://github.com/traex/RippleEffect |
yup, I'm investigating it to make it work starting from android ver. 9 |
Hi, nice to meet you I reviewed your Floating Action button library, I think it is suitable for my project, But I am not sure how to use animation? For example, i want scale-in , scale-out animation, but i don't know how to do. I used xml, and also used it in code, but it didn't work. This is my code snippet . mFab = (FloatingActionButton)findViewById(R.id.action_button); Can you help me? |
Hi wangdalong, Animations are played while calling the public methods:
There are a few questions about playing animations, so I will add this description to README.md file soon and in the next version I will also add these public methods to allow forcing the animations play:
If you need to force play the animation now and you don't want to call neither show(), hide() nor dismiss() try this code: mFab.startAnimation(mFab.getAnimationOnShow()); // for animation on start
mFab.startAnimation(mFab.getAnimationOnHide()); // for animation on hide |
Implemented in version 1.1.0 |
No description provided.
The text was updated successfully, but these errors were encountered: