I want to create an application with resideMenu like this. How to do it? Or is there any useful library that can help to realize it? Thanks!
Asked
Active
Viewed 4,548 times
4
-
Its simple use translate animation in sequence with scale animation. – Muhammad Babar Aug 05 '14 at 09:48
-
Thanks, but have you got an example? – Daryn Aug 05 '14 at 09:49
-
1http://stackoverflow.com/questions/11465774/android-how-to-make-slide-menu-like-facebook-spotify-and-google/15879886#15879886 well you can use **Scale Animation** in sequence with **Translate Animation**. – Muhammad Babar Aug 05 '14 at 09:52
1 Answers
6
use this library : Android Reside Menu on github

Meysam
- 694
- 6
- 20
-
1And if you want your own custom view for menu: public class CustomResideMenuItem extends ResideMenuItem { public CustomResideMenuItem_logo(Context context) { super(context); removeAllViews(); LayoutInflater.from(getContext()).inflate(R.layout.item_residemenu_image, this); } } – Misagh Jul 21 '18 at 11:08