I am new to android.I had developed an android app with a slider menu using the library.
I want the menu in this way:
Now I want to change slider menu to my custom xml view .How can I change this with this library?? is it possible ?? Please help me if you are familiar with this library.Thanks in advance
Why are you using a library for navigation drawer,refer this easy example for making a sliding menu and it gives you the flexibility to make it customize the way you want : http://developer.android.com/training/implementing-navigation/nav-drawer.html
Related
I'm needing help creating a customizable menu for my Android app. Is it possible to create a RecyclerView for the menu, create a layout for the cell, and do a for loop for the menu item name and image? Or do I need to create an actual navigation menu in my layout directory? Thank you!
iOS Preview
Android Preview
I'm trying to implement a Bottom Navigation Bar in android. I have implemented the basic design and functionality but need to make a change in the design.
I need the center Icon to be Enlarged so that it looks something like the image above.
I cannot seem to find any way to do that.
Will i have to make a custom class for that?
You can use this library to achieve bottom navigation like this
https://github.com/armcha/Space-Navigation-View
I'm trying to create a navigation drawer like this:
facebook side chat
inside the navigation drawer,I need a login page instead of a list,like this:
side login page
I didn't find any helpful libraries for doing this (SlidingMenu was the library nearest to the solution) and I found just side menu with a list of elements.
Could you please suggest me a solution/library to use?
Thank you very much.
You can implement by overriding drawer slide listener. Here it is well explained https://stackoverflow.com/a/33588398/4804264
You can write a custom Viewgroup to control the View(your side menu).
And using the ValueAnimator, you can slide the menu from the side.
Custom components
Custom
Property Animation
How can i create the pop up menu exactly in my Android list view like this having material design effects and pop up animation? can anybody help with the code?
When i click on the 3 dots the Menu should popup on its top like in the below image:
You could try and use the PopUp Menu.
Here is a link tk more information: http://developer.android.com/reference/android/widget/PopupMenu.html
You can also provide a custom layout to it, if it's another layout you want.
I am trying to implement a feature in android which is used in Google Drive app. When you click on the info button of one of your file you get a sliding menu on the right. You can find the image here. I don't know if this is a custom implementation of Sliding Menu or if a class exists to do this. Appreciate if anyone could help me implement this. I want this on a button click and the list view should appear from right.
You need to use a DrawerLayout. The View you add with android:layout_gravity="end" will be at the right.
To open it on click, use drawerLayout.openDrawer(Gravitiy.END);.
I think you want to implement Navigation Drawer. You can find a sample ready to run application from Android Developer Tutorial