Create a Customized Menu in Kotlin - android

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

Related

Is it possible to have multiple views in a menu item?

I'm trying to do something like the mockup I drew below. I have menu items but on each I want one image view and one text view. All I'm seeing is title and icon attributes in the menu items which don't do the job.
If you want to use the standard Android widgets (Menu, MenuItem, etc), then no, this is not possible.
However, you could create your own floating view that looked just like a standard Android menu, and then do whatever you want.

Android Pop-up Menu with material design in ListView

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.

How to change slider menu to custom view?

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

Android Actionbar PopupMenu with Custom Item Layouts

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.

How to Creating Menu Like Context Menu in Android

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

Categories

Resources