pop component in android without xml layout - android

I need to create popup window or overlay in android without using layouts,like in ios,
can anyone help me in solving this,if there is any library for creating popups or overlay in android let me know?

It sounds like you're looking for AlertDialog.Builder.

Related

Special Alert Dialog in Android

I am trying to create an alert dialog as shown below.
I don't know if there is any special name for this. I want to create this kind of Alert Dialog for my android application. Can Someone help me in achieving this?
EDIT: (after Dmytro Batyuk's Clarification)
I want to create this kind of popup window to create a tutorial walk-through for my android application. Any help appreciated.
Are you asking about PopupWindow ?
Updated:
you need to look at PopupWindow implementation and if it has such style - feel free to use. Otherwise you need to implement your own style.
Also you can google different existing implementation if you think it's hard for you and modify them

How can I create this custom pop-up message in Android activity?

I am tasked with creating this kind of pop-up message for an app. I attached an image bellow with the design,
Note that the pop-up is placed right bellow a certain ImageButton to indicate something about it. The pop-up must also contain an ImageView, a TextView and two Buttons.
I know that the Alert Dialog native for Android opens a Dialog Popup at the center of the screen that has a rectangular shape and also makes the background behind it darker. But I want to create something that matches this design exactly and right now I have no idea how.
Can anyone show me how to do this, if necessary, even a library would help. All that matters is that the solution has to work on any Android OS equal or higher than v6.0 (Marshmallow).
Thank You!
Below popup library will help
https://android-arsenal.com/details/1/2927
you can inflate your custom View into this library

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.

Android Custom Activity

http://tinypic.com/r/2v85soh/5
Hi!,
Do you see that bottom arrow pointing up? I want to allow users in Android to be able to drag it and use buttons from there!
Regards,
Michael
Android has a SlidingDrawer UI component that can be used for this sort of thing: http://developer.android.com/reference/android/widget/SlidingDrawer.html
Android has a SlidingDrawer widget, but it's deprecated. I would look online for open source libraries/projects that have implemented this kind of functionality. Perhaps something like this: AndroidSlideUpPanel

Android Dropdown List (iPhone style)

Could anyone tell me either what this widget is or how it could be recreated? I'm having to port over a iPhone app, and my boss wants me to make it look as similar as possible, but while using android controls. Here is a picture of it in Android:
http://cdn3.staztic.com/screenshots/android-swim-32-2.jpg
Thanks!
It is not a standard thing, but for this purpose, there is a: QuickAction dialog.
this can be done with a PopupWindow (it can also be shown as dropdown) where the background is a custom nine-patch file and the content is a listview (or any other view that fits your needs).
I'm sure that GreenDroid Library can do this but I don't know the name of the class to use

Categories

Resources