Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android GPS定位

Android GPS定位

編輯:關於Android編程

GPS定位貌似在室內用不了,今天自己弄了一個GPS定位小Demo,包括用戶所在的經度、緯度、高度、方向、移動速度、精確度等信息。Android為GPS功能支持專門提供了一個LocationManager類,程序並不能直接創建LocationManager實例,而是通過Context的getSystemService()方法來獲取。

例如:

 

//創建LocationManager對象
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

 

下面的程序很簡單,布局裡面只用了一個EditText顯示所有數據:

 

實例Demo:

MainActivity.java

 

package sn.qdj.localgpsdemo;

import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.EditText;
/**
 * GPS定位
 * @author qingdujun
 *
 */
public class MainActivity extends Activity {

	LocationManager lm;
    EditText show;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        show = (EditText)findViewById(R.id.show);
        
        //創建LocationManager對象
        lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
        //從GPS獲取最近的定位信息
        Location lc = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        
        //更新顯示定位信息
        updateView(lc);
        
        //設置每3秒 獲取一次GPS定位信息
        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000, 8, new LocationListener() {
			
			@Override
			public void onStatusChanged(String provider, int status, Bundle extras) {
				// TODO Auto-generated method stub
				
			}
			
			@Override
			public void onProviderEnabled(String provider) {
				// 當GPS LocationProvider可用時,更新定位
				updateView(lm.getLastKnownLocation(provider));
			}
			
			@Override
			public void onProviderDisabled(String provider) {
				// TODO Auto-generated method stub
				updateView(null);
			}
			
			@Override
			public void onLocationChanged(Location location) {
				// 當GPS定位信息發生改變時,更新定位
				updateView(location);
			}
		});
        
    }
    
    public void updateView(Location newLocation){
    	if (newLocation != null) {
			StringBuilder sb = new StringBuilder();
			sb.append(實時位置信息:
);
			sb.append(經度:
);
			sb.append(newLocation.getLongitude());
			sb.append(
緯度:);
			sb.append(newLocation.getLatitude());
			sb.append(
高度:);
			sb.append(newLocation.getAltitude());
			sb.append(
速度:);
			sb.append(newLocation.getSpeed());
			sb.append(
方向:);
			sb.append(newLocation.getBearing());
			sb.append(
定位精度:);
			sb.append(newLocation.getAccuracy());
			
			show.setText(sb.toString());
		} else {
			show.setText(null);
		}
    }
}

activity_main.xml

 



    
    

GPS定位需要添加一個權限

 


    

 

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