Android下GPRS定位

news/2024/12/2 12:54:56/

转载地址:http://www.cnblogs.com/linjiqin/archive/2011/11/01/2231598.html

一、LocationManager

LocationMangager,位置管理器。要想操作定位相关设备,必须先定义个LocationManager。我们可以通过如下代码创建LocationManger对象。

LocationManger locationManager=(LocationManager)this.getSystemService(Context.LOCATION_SERVICE); 

         

二、LocationListener

LocationListener,位置监听,监听位置变化,监听设备开关与状态。

复制代码
    private LocationListener locationListener=new LocationListener() {/*** 位置信息变化时触发*/public void onLocationChanged(Location location) {updateView(location);Log.i(TAG, "时间:"+location.getTime()); Log.i(TAG, "经度:"+location.getLongitude()); Log.i(TAG, "纬度:"+location.getLatitude()); Log.i(TAG, "海拔:"+location.getAltitude()); }/*** GPS状态变化时触发*/public void onStatusChanged(String provider, int status, Bundle extras) {switch (status) {//GPS状态为可见时
            case LocationProvider.AVAILABLE:Log.i(TAG, "当前GPS状态为可见状态");break;//GPS状态为服务区外时
            case LocationProvider.OUT_OF_SERVICE:Log.i(TAG, "当前GPS状态为服务区外状态");break;//GPS状态为暂停服务时
            case LocationProvider.TEMPORARILY_UNAVAILABLE:Log.i(TAG, "当前GPS状态为暂停服务状态");break;}}/*** GPS开启时触发*/public void onProviderEnabled(String provider) {Location location=lm.getLastKnownLocation(provider);updateView(location);}/*** GPS禁用时触发*/public void onProviderDisabled(String provider) {updateView(null);}};
复制代码

      

三、Location

Location,位置信息,通过Location可以获取时间、经纬度、海拔等位置信息。上面采用locationListener里面的onLocationChanged()来获取location,下面讲述如何主动获取location。

Location location=locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);   
system.out.println("时间:"+location.getTime());   
system.out.println("经度:"+location.getLongitude());  

注意:Location location=new Location(LocationManager.GPS_PROVIDER)方式获取的location的各个参数值都是为0。

            

四、GpsStatus.Listener

GpsStatus.Listener ,GPS状态监听,包括GPS启动、停止、第一次定位、卫星变化等事件。

复制代码
    //状态监听
    GpsStatus.Listener listener = new GpsStatus.Listener() {public void onGpsStatusChanged(int event) {switch (event) {//第一次定位
            case GpsStatus.GPS_EVENT_FIRST_FIX:Log.i(TAG, "第一次定位");break;//卫星状态改变
            case GpsStatus.GPS_EVENT_SATELLITE_STATUS:Log.i(TAG, "卫星状态改变");//获取当前状态
                GpsStatus gpsStatus=lm.getGpsStatus(null);//获取卫星颗数的默认最大值
                int maxSatellites = gpsStatus.getMaxSatellites();//创建一个迭代器保存所有卫星 
                Iterator<GpsSatellite> iters = gpsStatus.getSatellites().iterator();int count = 0;     while (iters.hasNext() && count <= maxSatellites) {     GpsSatellite s = iters.next();     count++;     }   System.out.println("搜索到:"+count+"颗卫星");break;//定位启动
            case GpsStatus.GPS_EVENT_STARTED:Log.i(TAG, "定位启动");break;//定位结束
            case GpsStatus.GPS_EVENT_STOPPED:Log.i(TAG, "定位结束");break;}};};
//绑定监听状态
lm.addGpsStatusListener(listener);
复制代码

          

五、GpsStatus

复制代码
GpsStatus,GPS状态信息,上面在卫星状态变化时,我们就用到了GpsStatus。//实例化    
GpsStatus gpsStatus = locationManager.getGpsStatus(null); // 获取当前状态    
//获取默认最大卫星数    
int maxSatellites = gpsStatus.getMaxSatellites();     
//获取第一次定位时间(启动到第一次定位)    
int costTime=gpsStatus.getTimeToFirstFix();   
//获取卫星    
Iterable<GpsSatellite> iterable=gpsStatus.getSatellites();   
//一般再次转换成Iterator    
Iterator<GpsSatellite> itrator=iterable.iterator();  
复制代码

             

六、GpsSatellite
    
GpsSatellite,定位卫星,包含卫星的方位、高度、伪随机噪声码、信噪比等信息。

复制代码
     
//获取卫星    
Iterable<GpsSatellite> iterable=gpsStatus.getSatellites();   
//再次转换成Iterator    
Iterator<GpsSatellite> itrator=iterable.iterator();   
//通过遍历重新整理为ArrayList    
ArrayList<GpsSatellite> satelliteList=new ArrayList<GpsSatellite>();    
int count=0;   
int maxSatellites=gpsStatus.getMaxSatellites();   
while (itrator.hasNext() && count <= maxSatellites) {     GpsSatellite satellite = itrator.next();     satelliteList.add(satellite);     count++;   
}    
System.out.println("总共搜索到"+count+"颗卫星");   
//输出卫星信息    
for(int i=0;i<satelliteList.size();i++){   //卫星的方位角,浮点型数据    
    System.out.println(satelliteList.get(i).getAzimuth());   //卫星的高度,浮点型数据    
    System.out.println(satelliteList.get(i).getElevation());   //卫星的伪随机噪声码,整形数据    
    System.out.println(satelliteList.get(i).getPrn());   //卫星的信噪比,浮点型数据    
    System.out.println(satelliteList.get(i).getSnr());   //卫星是否有年历表,布尔型数据    
    System.out.println(satelliteList.get(i).hasAlmanac());   //卫星是否有星历表,布尔型数据    
    System.out.println(satelliteList.get(i).hasEphemeris());   //卫星是否被用于近期的GPS修正计算    
    System.out.println(satelliteList.get(i).hasAlmanac());   
}  
复制代码

         

           

为了便于理解,接下来模拟一个案例,如何在程序代码中使用GPS获取位置信息。

第一步:新建一个Android工程项目,命名为mygps,目录结构如下

         

第二步:修改main.xml布局文件,修改内容如下:

复制代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><EditText android:layout_width="fill_parent"android:layout_height="wrap_content"android:cursorVisible="false"android:editable="false"android:id="@+id/editText"/>
</LinearLayout>
复制代码

           

第三步:实用Adnroid平台的GPS设备,需要添加上权限

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/><uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

          

第四步:修改核心组件activity,修改内容如下

复制代码
package com.ljq.activity;import java.util.Iterator;import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.location.Criteria;
import android.location.GpsSatellite;
import android.location.GpsStatus;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.location.LocationProvider;
import android.os.Bundle;
import android.provider.Settings;
import android.util.Log;
import android.widget.EditText;
import android.widget.Toast;public class GpsActivity extends Activity {private EditText editText;private LocationManager lm;private static final String TAG="GpsActivity";
 @Overrideprotected void onDestroy() {// TODO Auto-generated method stubsuper.onDestroy();lm.removeUpdates(locationListener);}
    @Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);editText=(EditText)findViewById(R.id.editText);lm=(LocationManager)getSystemService(Context.LOCATION_SERVICE);//判断GPS是否正常启动
        if(!lm.isProviderEnabled(LocationManager.GPS_PROVIDER)){Toast.makeText(this, "请开启GPS导航...", Toast.LENGTH_SHORT).show();//返回开启GPS导航设置界面
            Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);   startActivityForResult(intent,0); return;}//为获取地理位置信息时设置查询条件
        String bestProvider = lm.getBestProvider(getCriteria(), true);//获取位置信息//如果不设置查询要求,getLastKnownLocation方法传人的参数为LocationManager.GPS_PROVIDER
        Location location= lm.getLastKnownLocation(bestProvider);    updateView(location);//监听状态
        lm.addGpsStatusListener(listener);//绑定监听,有4个参数    //参数1,设备:有GPS_PROVIDER和NETWORK_PROVIDER两种//参数2,位置信息更新周期,单位毫秒    //参数3,位置变化最小距离:当位置距离变化超过此值时,将更新位置信息    //参数4,监听    //备注:参数2和3,如果参数3不为0,则以参数3为准;参数3为0,则通过时间来定时更新;两者为0,则随时刷新   // 1秒更新一次,或最小位移变化超过1米更新一次;//注意:此处更新准确度非常低,推荐在service里面启动一个Thread,在run中sleep(10000);然后执行handler.sendMessage(),更新位置
        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 1, locationListener);}//位置监听
    private LocationListener locationListener=new LocationListener() {/*** 位置信息变化时触发*/public void onLocationChanged(Location location) {updateView(location);Log.i(TAG, "时间:"+location.getTime()); Log.i(TAG, "经度:"+location.getLongitude()); Log.i(TAG, "纬度:"+location.getLatitude()); Log.i(TAG, "海拔:"+location.getAltitude()); }/*** GPS状态变化时触发*/public void onStatusChanged(String provider, int status, Bundle extras) {switch (status) {//GPS状态为可见时
            case LocationProvider.AVAILABLE:Log.i(TAG, "当前GPS状态为可见状态");break;//GPS状态为服务区外时
            case LocationProvider.OUT_OF_SERVICE:Log.i(TAG, "当前GPS状态为服务区外状态");break;//GPS状态为暂停服务时
            case LocationProvider.TEMPORARILY_UNAVAILABLE:Log.i(TAG, "当前GPS状态为暂停服务状态");break;}}/*** GPS开启时触发*/public void onProviderEnabled(String provider) {Location location=lm.getLastKnownLocation(provider);updateView(location);}/*** GPS禁用时触发*/public void onProviderDisabled(String provider) {updateView(null);}};//状态监听
    GpsStatus.Listener listener = new GpsStatus.Listener() {public void onGpsStatusChanged(int event) {switch (event) {//第一次定位
            case GpsStatus.GPS_EVENT_FIRST_FIX:Log.i(TAG, "第一次定位");break;//卫星状态改变
            case GpsStatus.GPS_EVENT_SATELLITE_STATUS:Log.i(TAG, "卫星状态改变");//获取当前状态
                GpsStatus gpsStatus=lm.getGpsStatus(null);//获取卫星颗数的默认最大值
                int maxSatellites = gpsStatus.getMaxSatellites();//创建一个迭代器保存所有卫星 
                Iterator<GpsSatellite> iters = gpsStatus.getSatellites().iterator();int count = 0;     while (iters.hasNext() && count <= maxSatellites) {     GpsSatellite s = iters.next();     count++;     }   System.out.println("搜索到:"+count+"颗卫星");break;//定位启动
            case GpsStatus.GPS_EVENT_STARTED:Log.i(TAG, "定位启动");break;//定位结束
            case GpsStatus.GPS_EVENT_STOPPED:Log.i(TAG, "定位结束");break;}};};/*** 实时更新文本内容* * @param location*/private void updateView(Location location){if(location!=null){editText.setText("设备位置信息\n\n经度:");editText.append(String.valueOf(location.getLongitude()));editText.append("\n纬度:");editText.append(String.valueOf(location.getLatitude()));}else{//清空EditText对象
            editText.getEditableText().clear();}}/*** 返回查询条件* @return*/private Criteria getCriteria(){Criteria criteria=new Criteria();//设置定位精确度 Criteria.ACCURACY_COARSE比较粗略,Criteria.ACCURACY_FINE则比较精细 
        criteria.setAccuracy(Criteria.ACCURACY_FINE);    //设置是否要求速度
        criteria.setSpeedRequired(false);// 设置是否允许运营商收费  
        criteria.setCostAllowed(false);//设置是否需要方位信息
        criteria.setBearingRequired(false);//设置是否需要海拔信息
        criteria.setAltitudeRequired(false);// 设置对电源的需求  
        criteria.setPowerRequirement(Criteria.POWER_LOW);return criteria;}
}
复制代码

       

第五步:启动模拟器,如果启动完成,请在Myeclipse中按如下选项一步一步操作:Emulator Control->Location Controls->Manual->选中Decimal->输入经纬度,类似如下

      

演示效果如下:


http://www.ppmy.cn/news/521613.html

相关文章

MC20CB-04-TTS 四频段GSM/GPRS/GNSS MC20模块 应用

移远通信 MC20 模块是采用联发科技最新推出的多功能通信定位芯片研制而成。它是一款集成 LCC 封装、四频段 GSM/GPRS 和先进算法 GNSS 引擎于一体的全功能通信模块&#xff0c;具有超小体积、低功耗、双卡单待等优势。MC20 不仅内嵌丰富的网络协议&#xff08;如 TCP/UDP/PPP/F…

(五)GPRS定位的实现

前段时间在弄GPRS定位的问题&#xff0c;使用google的地图定位&#xff0c;大家也都知道&#xff0c;google现在在中国境内有很多限制&#xff0c;而且国外刷机严重&#xff0c;难免将google的各种服务给刷掉&#xff0c;所以最终采用百度的定位系统&#xff0c;完美实现。现在…

手机GPRS定位

发现一个比较不错的手机GPRS定位网址&#xff0c;可怜要有30积分才可以免费定位一次&#xff0c;这里面宣传分享下&#xff0c;看看可能挣点积分. 废话少说&#xff0c;没得事的帮点下看下吧&#xff1a;http://www.xxsaga.com/?fanghoujun

蓝牙SPP、通信GPRS与定位GPS

目录 前言一、蓝牙1.1 蓝牙模块简介1.2 蓝牙常用AT指令集1.3 示例代码 二、通信模块2.1 模块简介2.2 AT指令简介2.2.1 常用AT指令2.2.2 拨打/接听电话2.2.3 短信的读取与发送2.3.4 GPRS 通信 2.3 TCP通信示例代码 三、GPS模块3.1 GPS模块简介3.2 GPS常用通信协议3.2.1 NMEA-018…

GPS与GPRS的区别

一、什么是GPS&#xff1f; GPS的英文全称为Global Position System&#xff0c;通过简单的翻译之后我们便得到了&#xff1a;“全球卫星定位系统”这样的结果。从20世纪50年代后期开始&#xff0c;美国人用了30年&#xff0c;花了300多亿美金&#xff0c;建造了如此一个辉…

GPS数据包格式+数据解析

全球时区的划分&#xff1a; 每个时区跨15经度。以0经线为界向东向西各划出7.5经度&#xff0c;作为0时区。即0时区的经度范围是7.5W——7.5E。从7.5E与7.5W分别向东、向西每15经度划分为一个时区&#xff0c;直到东11区和西11区。东11区最东部的经度是172.5E&#xff0c;由172…

GPS/GPRS定位

闲着没事&#xff0c;把GPS模块的使用学习了一下&#xff0c;就是传说中的NMEA-0183&#xff0c;我只使用最小帧GPRMC(Recommended Minimum Specific GPS/TRANSIT Data)&#xff0c;下图是我的程序 最近有个想法&#xff0c;在MSP430F149上面做GPS/GPRS定位&#xff0c;GPS会弄…

LBS 和 GPRS 定位移动位置比较

名词释义&#xff1a; 基站定位一般应用于手机用户&#xff0c;手机基站定位服务又叫做移动位置服务&#xff08;LBS——Location Based Service&#xff09;&#xff0c;它是通过电信移动运营商的网络&#xff08;如 GSM 网&#xff09;获取移动终端用户的位置信息&#xff…