Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android GPS獲取當前經緯度坐標

Android GPS獲取當前經緯度坐標

編輯:關於Android編程

APP中可能會遇到一種需求,就是將當前所在位置的坐標傳到服務器上,今天我提供三種途徑去獲取經緯度坐標信息,第一種是通過Android API來實現,第二種通過百度地圖API來實現,第三種通過天地圖API來實現。

第一種方法(Android API實現),廢話不多說,上代碼。

MainActivity代碼如下:

public class MainActivity extends Activity {
	private static final String TAG = MainActivity.class.getSimpleName();
	private double latitude = 0.0;
	private double longitude = 0.0;
	private TextView info;
	private LocationManager locationManager;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		info = (TextView) findViewById(R.id.tv);
		locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
		if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
			getLocation();
			//gps已打開
		} else {
			toggleGPS();
			new Handler() {
			}.postDelayed(new Runnable() {
				@Override
				public void run() {
					getLocation();
				}
			}, 2000);

		}
	}

	private void toggleGPS() {
		Intent gpsIntent = new Intent();
		gpsIntent.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider");
		gpsIntent.addCategory("android.intent.category.ALTERNATIVE");
		gpsIntent.setData(Uri.parse("custom:3"));
		try {
			PendingIntent.getBroadcast(this, 0, gpsIntent, 0).send();
		} catch (CanceledException e) {
			e.printStackTrace();
			locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000, 0, locationListener);
			Location location1 = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
			if (location1 != null) {
				latitude = location1.getLatitude(); // 經度
				longitude = location1.getLongitude(); // 緯度
			}
		}
	}

	private void getLocation() {
		Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
		if (location != null) {
			latitude = location.getLatitude();
			longitude = location.getLongitude();
		} else {

			locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, locationListener);
		}
		info.setText("緯度:" + latitude + "\n" + "經度:" + longitude);
	}

	LocationListener locationListener = new LocationListener() {
		// Provider的狀態在可用、暫時不可用和無服務三個狀態直接切換時觸發此函數
		@Override
		public void onStatusChanged(String provider, int status, Bundle extras) {
		}

		// Provider被enable時觸發此函數,比如GPS被打開
		@Override
		public void onProviderEnabled(String provider) {
			Log.e(TAG, provider);
		}

		// Provider被disable時觸發此函數,比如GPS被關閉
		@Override
		public void onProviderDisabled(String provider) {
			Log.e(TAG, provider);
		}

		// 當坐標改變時觸發此函數,如果Provider傳進相同的坐標,它就不會被觸發
		@Override
		public void onLocationChanged(Location location) {
			if (location != null) {
				Log.e("Map", "Location changed : Lat: " + location.getLatitude() + " Lng: " + location.getLongitude());
				latitude = location.getLatitude(); // 經度
				longitude = location.getLongitude(); // 緯度
			}
		}
	};

	/*
	 * 
	 * 打開和關閉gps第二種方法
	 * private void openGPSSettings() {
		//獲取GPS現在的狀態(打開或是關閉狀態)
		boolean gpsEnabled = Settings.Secure.isLocationProviderEnabled(getContentResolver(), LocationManager.GPS_PROVIDER);
		if (gpsEnabled) {
			//關閉GPS
			Settings.Secure.setLocationProviderEnabled(getContentResolver(), LocationManager.GPS_PROVIDER, false);
		} else {
			//打開GPS  
			Settings.Secure.setLocationProviderEnabled(getContentResolver(), LocationManager.GPS_PROVIDER, true);
		}
	}*/
}
main.xml布局如下



    

清單文件如下:



    
  
    
    
    
    
    

    
        
            
                

                
            
        
    
運行結果如下

\

下載Demo請猛戳<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+tdq2/tbWt723qKOosNm2yLXYzbxBUEnKtc/Wo6zXoqO60OjSqtfUvLrJ6sfrYXBpa2V5o6k8L3A+CjxwPs/C1NhEZW1vx+vDzbTBPGJyPgo8aW1nIHNyYz0="/uploadfile/Collfiles/20141012/2014101209154556.gif" alt="\">

第三種方法(天地圖API實現)

下載Demo請猛戳



  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved