LocationManager mLocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE); LocationListener mLocListener = new MyLocationListener(); mLocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,mLocListener);public class MyLocationListener implements LocationListener{ public voID onLocationChanged(Location loc) { String message = String.format( "New Location \n Longitude: %1$s \n Latitude: %2$s",loc.getLongitude(),loc.getLatitude() ); Toast.makeText(LbsGeoCodingActivity.this,message,Toast.LENGTH_LONG).show(); } public voID onProvIDerDisabled(String arg0) { } public voID onProvIDerEnabled(String provIDer) { } public voID onStatusChanged(String provIDer,int status,Bundle extras) { } }
阅读详细信息http://www.javacodegeeks.com/2010/09/android-location-based-services.html
总结以上是内存溢出为你收集整理的如何在Android中单击按钮找到我当前的位置(纬度经度)?全部内容,希望文章能够帮你解决如何在Android中单击按钮找到我当前的位置(纬度经度)?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)