Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Hi I am implementing a search for an android application.
I need to do an autocomplete search engine for only a certain type of places (like restaurants). And I have no idea how to start, if anyone could show me an example of a custom search engine or give me some tips, that would be appreciated.
First you have to implement Google Place API for Finding Restaurant,Nice Documentation is Given here regarding finding a restaurant around nearest place in.Read this document carefully.https://developers.google.com/places/documentation/search
After Implementing This document You need to implement autocomplete this may help you https://developers.google.com/places/training/autocomplete-android, and if in case it may not help you than you might have to apply some your own logic and do it
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 4 years ago.
Improve this question
I've been trying to make a nearby places app, and I've been wondering if there is any function that shows the results like on the image down below:
To show the results like in the image above, you can create a custom view that will display each place informations, then use a recyclerview and an adapter. Then you can make a nearby search request based on the location of your choice and parse the results.
You can find more explainations about nearby search request at this link:
https://developers.google.com/places/web-service/search
About recyclerview, you can check:
https://developer.android.com/guide/topics/ui/layout/recyclerview
and about the adapter:
https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter
You'll find many other posts here on stackoverflow that will explain the use of the recyclerview, and I think, they will be helpful in your case.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I wanna create a simple chat app in android but really I don't how to start
I really searched in google but really I didn't find any helpful link or code
so guys please I need your help how Can I start any video link or any simple code
In case you have some experience in Java I can recommend this book:
Professional Android 4 Application Development (Wrox)
It really helped me to get started with Android development. Otherwise the best start is probably a quick introduction to Java. In German there's also a book called Java for Android, not sure if it exists in English, too.
Also for inspiration you can have a look at this:
https://code.google.com/p/simple-android-instant-messaging-application/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am building an android application. I would like to know automatically if the user if walking or using a vehicle like a car when the application is switched on.
I'll be obviously using google maps to do it. But can someone give me pointer on how should I go about it.
Thanks
Yes, you could use the new Activity Recognition API that is part of Google Play Services. You can find more information in this link.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How to make a share button in my image application so that when we press share button it share the current image to different option like whats app,facebook etc.Plz Answer That
See the tutorial in the Android docs on Adding an Easy Share Action. It tells you exactly what you are asking.
That tutorial uses a ShareActionProvider, which is only since API 14. To support earlier versions of Android, take a look at the accepted answer in this thread. This third-party tutorial also provides lots of good info.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Hello every I am working on android application where i need to implement captcha with my android application I want to create captcha which we are using in web applications. I found some answer about simple-captcha and j-captcha, but how to use it with android applications, I not find any tutorial which is use full for in this case.
Any idea or solution for this?
thanks in advance