I would like to implement a drop down menu from the ToolBar like in the Ios version of Google+:
But as as a beginner in android development, I don't know which component should I use, anybody can help me with that ?
Those SO question you've mentioned in the comments are true: You should not implement an exact copy of that iOS navigation in Android. If you choose to develop an app for Android then you better make it look like an Android app (because that is what your users will expect).
However, that does not imply Android lacks of similar navigation pattern. What you are looking for is ActionBar dropdown navigation and can be found on this official docs. That link should be enough to get you started. :)
Related
Does Android use or have native buttons for something like NEXT or CONTINUE - I'm working on a 2 step process and want to use what Android has NATIVELY vs Custom design.
For example, IOS has the native TOP NAVIGATION that you can change.
In this instance, we are using a CONTINUE button up top. This is a native option with IOS. Does Android have anything like this? If so, what does it look like and where is it placed. I cannot find anything on this.
Thank you in advance!
No android do not have native button.
You have to make your custom xml for action bar and add next/continue buttons.
A good way to learn about what action bar/ App bar provides and what it doesn't visit Material.io.
I would suggest using a floating action button (FAB).
I think this is as close as it gets for a native next button, although it can be used for many things.
For android design components I would recommend you having a look at Material.io. There you will get in depth explanations for almost all android design patterns!
In a swift Google search, I do find a couple of similar questions to pointing to Xamarin Forms. I need to do this in Xamarin.Android. This documentation talk about the Xamarin Android navigation bar but it doesn't say if it even possible to customize it. Which is the right approach for me to make a custom navigation bar with back and next buttons??
Thank you
If you are working with Xamarin.Core so you can Google without specifying Xamarin. You will have a small extra work to "convert" the Java code to C# code.
Here for example a tutorial to create a custom Action Bar for Android :
https://www.journaldev.com/9952/android-custom-action-bar-example-tutorial
Don't forget that Xamarin is just a wrapper that allows you to create Android application using C# language.
All the Android framework is available and you can use it.
I am new to android development. I want to implement something like this image shown that whenever image is clicked on action bar, a pop up type of thing is shown. I want to know what feature of android is this and how can it be implemented.
The Navigation Drawer pattern is officially described in the Android documentation!
Check out the following links:
Design docs can be found here.
Developer docs can be found here.
I really love the new menus in the Android apps Spotify, YouTube, Google+ etc. And I would like to implement it in my apps.
Is there a library or another solution to include it in an Android java project?
It's not official, but side navigation seems to be the prevailing term:
Side navigation is a UI pattern that provides users quick
shortcuts to the most important part of the application without having
to leave the screen they are on.
A design pattern I've noticed being used recently in some Android apps is a simple textual list menu similar to QuickActions in that it pops up in a speech-bubble-like View when summoned. The Google+ app uses it for overflow items, for example.
Does anybody know of a library that'll let me easily implement these kinds of menus in my own app or, if not, what the most straightforward way of doing it from scratch would be?
Many thanks.
It is not a standard widget, but you can use: QuickAction dialog. Or you wan't something else?