Skip to content Skip to sidebar Skip to footer

Get Gps Coordinates : Android

I'm new to Android development. As a class assignment another student and myself are making an android app that will utilize GPS coordinates. Is there anywhere that would be a goo

Solution 1:

As mentioned in one of the other answers, Vogella's article here is very good for learning the basics of using GPS on Android.

The Android Dev guides are also particularly good for this area - obviously there are issues with battery drain associated with using location listeners. More in-depth information on what you can do to combat those issues are here, as when you get to grips with how to use GPS, you'll want to use it efficiently!

HTH

Solution 2:

Well mostly GPS coordinates are used along with Google Maps. So, as a starter what you can do is just get your own coordinates and put a marker on your location on the map. This article and this one describes everything about using google maps with android.

Hope this helps.

Solution 3:

http://webdesignergeeks.com/mobile/android/geting-current-location-in-android-application-using-gps/

this will be a good start. it explains how to get GPS coordinates as text format. Without dealing with google maps or anything complex.

Post a Comment for "Get Gps Coordinates : Android"