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.
Related
I am trying to accomplish a popup menu Popup Menu
for my android app, with a custom app bar/ toolbar placed at the bottom.
I have already tried with the options menu and custom alert dialog but seems there must be a simpler way, am I missing something?
What is the best-suited way to achieve this menu design?
Do I need to use custom navigation drawer if not then please help.
Edit : As #Blackbelt suggested Bottom Sheet Dialog, which looks fine but it is covering my bottom app bar and I am not able to set any Margin Bottom for it. Please help.
Thanks
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
I am working on an Android application where I have to design a menu which will populate from the action bar, like this:
I have tried my best but was not able to produce it using the Android controls.
The solutions I have tried are:
With Actionbar, add a menu item with a group with selectable="all", that produces the layout I need but when I click a checkbox for selecting it, the whole menu hides and selection is not done, moreover the menu icon in actionbar does not have the bottom right white arrow.
Tried creating a custom ActionProvider and added the menu items using class's OnPrepareSubMenu method but had the same issue.
I just need a push in the right direction and I can do the rest, suggestions are more than welcome.
Thank you :)
Use popupWindow.
In that you can make any custom layout and set it as content of your popupwindow and also you can specify an ANCHOR in your case it would be
R.id.your_menu_item
set a listener and listen the changes.
I need to create some type of quick action menu that appears to the right side of the clicked item (button) whenever the user clicks the button.
Here's an example of what I'm trying to achieve:
When the user clicks button1 I want the "sub quick action menu" to appear like it's shown in the image above.
Is there anyway to do this 'natively' in android?
I have found this plugin but it only allows you to show the menu from the top or bottom of the button.
https://github.com/lorensiuswlt/NewQuickAction3D
As tyczj said, you could achieve that with a PopupMenu. The idea is that the popup menu will inflate a custom view with all the elements, having as background a 9 patch image.
Here's a blog post that shows how to do that. Hope it will help you.
You can do the same using Quick Action Menu, for more details you can follow the
"http://www.codeproject.com/Articles/521455/Quick-action-pattern-in-Android-and-simple-impleme"
Link.
In example Items are presented in horizontal manner, whereas you can manage them, like listview as per your requirement.
there is a PopupMenu but there is no arrow or anything pointing to where it came from. Its basically the same thing that comes up when clicking the Overflow actionbar item
Maybe this link can help you ;) But instead of sliding use press button.
Making a slide menu
I easily creating context menu but how to create menu Like a Context Menu just like picture. I unable to code like this. Is it possible to create in Android.This Menu Not a on middle of the mobile, it is just few portion overlap the clicking image.
You need to design custom spinner component which will be displayed on click of the image
This link may help you:
Custom spinner drop down menu