Using Google Places API in Android

后端 未结 5 1318

I am trying to develop an app which can display the schools and airports in the locality. I found that using Google Places API is the way to go.

I have seen the docu

5条回答
  •  醉酒成梦
    2020-12-01 02:06

    You will have to get familiar with HttpClient, HttpRequest, and HttpResponse if you're not already.

    Very simply:
    Step 1) build your uri with your api key and search terms as per google's syntax
    Step 2) perform a post using that uri
    Step 3) decode the response from the post

    Happy coding :)

提交回复
热议问题