In my application I am using a map overlay. When I click on an overlay image it should display an Android dialog. From that dialog the user can choose from different options. Please help me.
Thank you
Aswan
There's a developer guide section on creating dialogs that you can follow.
There's also sample code available in the API Demos sample project bundled with the SDK. Look for AlertDialogSamples.java.
Related
I know how to show popup. But i'm in need to show the popup with animation like facebook like option. And also i want to implement same animation when selecting reactions icon in popup same like facebook like option like the below image. could you please suggest me any idea to do this?
Facebook has made its own library to implement this animation. This animation includes image rendering.
Now they have published that library for every fellow developer named KeyFrame.
Add their dependency file.
compile 'com.facebook.keyframes:keyframes:1.0'
You can download the sample and explore the ideas.
I hope this will help you.
Hello im noob Android developer and i want to to make something like this image. It happens when i click the auto localization in gmap
http://imgur.com/Kdj5hiB
Do mean a dialog box like this?
It's an alert dialog. And you will find very useful information about it and implementations of it in these documentation :).
Android dialogs
I'm looking possibility to create transparent Help Dialog for app first run (when Android runs at first):
Help Dialog in Android:
example
Are some standard Android APIs for that purpose?
If no, can I use custom Alert Dialog?
Thank You in advance.
Use the showcase view library. It will serve your purpose. This is hosted in github
I am not use this dialog but read below link carefully, it will help and its have a standered.
https://developer.android.com/design/patterns/help.html
Why do not you use ShowcaseView library! This is one of the most famous tutorial libraries in Android. Here is the simplest example for it with clear guide Link and here is the Link of the main Library with full customization option.
I am using augmented reality in my application. So i have to implement an application, after running my application, device camera will open and when i will move this camera i will get Google map places like hotel,dominoes, on that place any pin will show, after clicked on that pin details of hotel, dominoes will be display. If any one know about please tell me or if any one have code related give me.
Firstly i have did how to get the Google place on map right now i have to open camera in my application and i want to show pin of places in my camera
Try out this demo code. Click here!.. It will help you.
You can get source code from this link. I have implemented the same using this code. It works.
I have edited link.. from this link, you can download the zip file.
I need to add help menu in my android application to help users know about the app for first time when they start Should show pop up screen like this
well, I can do this by adding such images but Is there any library or sample project available that I can use to achieve this!
here is developers link down there is a semi transparent image
What needs to happen is getting the locations of the relevant views and pass them, in an intent, to a help activity with a transparent background. Luckily, there is an open source library for this. Check out ShowcaseView . It is what you are looking for.