4

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!

enter image description here

Daryn
  • 770
  • 9
  • 19

1 Answers1

6

use this library : Android Reside Menu on github

https://github.com/SpecialCyCi/AndroidResideMenu

Meysam
  • 694
  • 6
  • 20
  • 1
    And 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