2010-10-06 80 views
0

有没有什么办法可以让我的应用程序本身的最后一个GPS位置?Android:使用GPS

有没有可用的API可以显示我的经纬度。我上次连接GPS的地方。

任何帮助,大大appriciated

谢谢

回答

1
LocationManager manager = (LocationManager)Context.getSystemService(Context.LOCATION_SERVICE); 
manager.getLastKnownLocation(LocationManager.GPS_PROVIDER); 
+0

@尼古拉Smiljanic:感谢UR答复..... – 2010-10-06 09:52:41

+0

进口android.content.Context; import android.location.LocationManager; LocationManager manager =(LocationManager)getSystemService(Context.LOCATION_SERVICE); manager.getLastKnownLocation(LocationManager.GPS_PROVIDER); – 2010-10-06 10:15:21