Android: custom a menu create - android

I don't know which type of this menu. can anyone help me.
I want to create menu like this screen. When i click the button then pop-up the menu like this. I don't know how to achieve this. i do not know what type of this menu. and can it run on android 2.2?

Current popup menu called QuickAction Dialog in Android. you can customize it According to you need. see following good tutorial for creating QuickAction View in Android:
How to Create QuickAction Dialog in Android
Quick Actions Android

This is Quick Action 3d. Checkout source and example from here :)

This is not exactly a custom dialog. But, yes it is still a customized view. And it is more or less called Quick Action Dialog in android. I would suggest you to follow the tutorials below for generating an exactly same popover (or even better) with Android. Check the screenshot also.
http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/
https://github.com/lorensiuswlt/NewQuickAction3D
Reference

Related

How Can I use This Webview Bar? - Android Stdiuo

How can I make a bar like the one in the picture? I'd appreciate it if you told me.
Name of the application in the picture: Google Mail
It's very simple. I assume you are new to android. But this type of View you can make just by Dialog or Menu View and also there are other way also to make it. but for you I suggest you use Dialog.

Create Dropdown from button on menu

In android, I want to create a dropdown menu like the following:
I've seen some examples where there are just buttons, and no text (like QuickActionView), but none like this. If someone could direct me to some open source code, that'd be great, or point me in the correct direction.
Thank You in advance.
Android's ActionBar does exactly this. Unfortunately, it is only available for 3.0 and up. However, you could use ActionBarSherlock.

Make a spinner-like dropdown box from a button?

I was trying to figure out how to create this style used in Google Now, how the "Settings" appears to be a Spinner drop-down box but does not use the typical Spinner design:
Any ideas/suggestions on how to emulate this?
Thanks!
This is called pop up menu. It is implemented in apidemos for example.
Did you look at the example of ApiDemos->Views->popup menu. This may be appropriate. Attached screenshot for your reference. Pop up menu is available since API 11. Ref.
http://developer.android.com/reference/android/widget/PopupMenu.html
or
This could be useful too
http://i.stack.imgur.com/AiAOg.png
You can get the Library from: https://github.com/JakeWharton/ActionBarSherlock
or
If you want to display icon along with menu items then I recommend to visit this post,
Please refer to this solution stackoverflow.com/a/11765787/1143977

Implementing custom menu in android system

I am trying to find a way to customize the android menu in system level.I want to remove the existing android menu and replace the custom menu.Can any one done the replacement of default menu.Can any one help me how to do that?? or kindly share some useful links to do that.
Thanks in Advance..
Hope these links will be helpful to you,
http://www.codeproject.com/KB/android/AndroidMenusMyWay.aspx
Adding Custom Menu In Messege Activity in android
Android: customize application's menu (e.g background color)
check this:
http://developer.android.com/guide/topics/ui/menus.html
http://developer.android.com/guide/topics/resources/menu-resource.html

Floating window in android

i have seen in android 2.2 that on click of the contact a floating window appear with the mail message and call.Is this a widget or dialog in android or something implemented by activity.
Kindly help me to suggest any tutorial.
Regards
Deepak goel
A floating window in Android is, generally, a Dialog or Dialog sub-class. You can also style a standard activity to look like a dialog using themes. Please refer to the official android documentation here:
http://developer.android.com/guide/topics/ui/dialogs.html
I'm not sure what you are talking about. If you are talking about Alerts/Dialogs refer this link on how to do alert boxes (which is again kinda floating on top of the activity )

Categories

Resources