百度定位SDK使用笔记

作者: 咸鱼而已 | 来源:发表于2016-05-09 19:07 被阅读5987次

    做这个笔记主要是因为这是第一次接SDK,记录一下具体步骤。由于刚开始学习Android,所以肯定有很多见解不成熟。希望看到的人能多多指正,有问题的地方可以提在评论,多谢赐教!

    使用百度的SDK,首先要注册成为百度开发者,然后申请一个密钥,申请密钥。PS:文档上说了在同一个工程如果同时使用了定位SDK和地图SDK,可以共用一个key。具体申请密钥的步骤在上面的传送门下面有详细步骤。申请完Key然后就是下载对应的jar包下载jar包,进行环境配置。我碰到的问题是下载的从上面的网址下载的开发包里面的文件没有对应的so文件,这个问题困扰半天(现在也没有解决)。后来直接从上面的网址下载的百度给出的示例代码,从示例代码抠出来的相关文件。
    下载到的文件包括:locSDK_6.23.jar、baidumapapi_v3_5_0.jar、armeabi文件夹里面有libBaiduMapSDK_v3_5_0_9.so和liblocSDK6a.so
    需要把上面下载到的文件全部拷到libs下面。
    因为我是在AndroidStudio中开发,所以需要在build.gradle中添加依赖并配置so文件的使用,下面是我测试工程中的build.gradle:

    apply plugin: 'com.android.application'
    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.1"
    
        defaultConfig {
            applicationId "com.zwf.locationdemo"
            minSdkVersion 14
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    
        //配置so使用
        sourceSets {
            main {
                jniLibs.srcDirs = ['libs']
            }
        }
    }
    
    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:23.1.1'
        //添加依赖项
        compile files('libs/baidumapapi_v3_5_0.jar')
        compile files('libs/locSDK_6.23.jar')
    }
    
    

    然后就是在AndroidManifest.xml中配置我们申请的key。设置AccessKey,在application标签中加入:

    <meta-data
    android:name="com.baidu.lbsapi.API_KEY"
    android:value="NUGASBtpwRTmtebCPUWsGo7r1d1fUylZ" />
    

    在application标签中声明service组件,每个app拥有自己单独的定位service:

    <intent-filter>
        <action android:name="com.baidu.location.service_v2.2" >
        </action>
    </intent-filter>
    

    当然定位所需要的一些权限也必不可少:

    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" >
    </uses-permission>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" >
    </uses-permission>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" >
    </uses-permission>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" >
    </uses-permission>
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" >
    </uses-permission>
    <uses-permission android:name="android.permission.READ_PHONE_STATE" >
    </uses-permission>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
    </uses-permission>
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" >
    </uses-permission>
    <uses-permission android:name="android.permission.READ_LOGS" >
    </uses-permission>
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
    

    关于配置的地方就大体上这么多,然后就可以在代码中使用定位SDK了。然后需要注意的就是配置SDK定位参数的时候,某个参数设置有问题可能会导致定位返回数据为空。当时我遇到的问题是错误码返回的161(网络定位成功),但是定位信息确实为空。下面贴一下代码(其实就是官方的例子),首先封了一下LocationClient和BDLocationListener。
    MainActivity.java:

    package com.zwf.locationdemo;
    
    
    import com.baidu.location.BDLocation;
    import com.baidu.location.BDLocationListener;
    import com.baidu.location.LocationClient;
    import com.baidu.location.Poi;
    import android.app.Activity;
    import android.os.Bundle;
    import android.text.method.ScrollingMovementMethod;
    import android.util.Log;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.Button;
    import android.widget.TextView;
    
    /***
     * 单点定位示例,用来展示基本的定位结果,配置在LocationService.java中
     * 默认配置也可以在LocationService中修改
     * 默认配置的内容自于开发者论坛中对开发者长期提出的疑问内容
     *
     * @author baidu
     *
     */
    public class MainActivity extends Activity implements OnClickListener {
        private LocationService locationService;
        private LocationClient mLocationClient;
        private MyLocationListener myLocationListener;
    
        private TextView LocationResult;
        private Button startLocation;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            // TODO Auto-generated method stub
            super.onCreate(savedInstanceState);
            // -----------demo view config ------------
            setContentView(R.layout.activity_main);
            LocationResult = (TextView) findViewById(R.id.textView1);
            LocationResult.setMovementMethod(ScrollingMovementMethod.getInstance());
            startLocation = (Button) findViewById(R.id.addfence);
    
        }
    
        /***
         * Stop location service
         */
        @Override
        protected void onStop() {
            // TODO Auto-generated method stub
            locationService.unregisterListener(myLocationListener); //注销掉监听
            locationService.stop(); //停止定位服务
    
            super.onStop();
        }
    
        @Override
        protected void onStart() {
            super.onStart();
            //获取locationservice实例,建议应用中只初始化1个location实例,然后使用,可以参考其他示例的activity,都是通过此种方式获取locationservice实例的
            locationService = new LocationService(this);
            //创建监听对象
            myLocationListener = new MyLocationListener();
            //注册监听
            locationService.registerListener(myLocationListener);
            int type = getIntent().getIntExtra("from", 0);
            if (type == 0) {
                locationService.setLocationOption(locationService.getDefaultLocationClientOption());
            } else if (type == 1) {
                locationService.setLocationOption(locationService.getOption());
            }
    
            getBtn.setOnClickListener(this);
            startLocation.setOnClickListener(this);
        }
    
        @Override
        public void onClick(View view) {
            switch (view.getId()){
                case R.id.addfence:
                    if (startLocation.getText().toString().equals(getString(R.string.startlocation))) {
                        locationService.start();// 定位SDK
                        // start之后会默认发起一次定位请求,开发者无须判断isstart并主动调用request
                        startLocation.setText(getString(R.string.stoplocation));
                    } else {
                        locationService.stop();
                        startLocation.setText(getString(R.string.startlocation));
                    }
                    break;
                default:
                    break;
            }
        }
    }
    

    LocationService.java:

    package com.zwf.locationdemo;
    import com.baidu.location.BDLocationListener;
    import com.baidu.location.LocationClient;
    import com.baidu.location.LocationClientOption;
    import com.baidu.location.LocationClientOption.LocationMode;
    import android.content.Context;
    
    /**
     * 
     * @author baidu
     *
     */
    public class LocationService {
        private LocationClient client = null;
        private LocationClientOption mOption,DIYoption;
        private Object  objLock = new Object();
    
        /***
         * 
         * @param locationContext
         */
        public LocationService(Context locationContext){
            synchronized (objLock) {
                if(client == null){
                    client = new LocationClient(locationContext);
                    client.setLocOption(getDefaultLocationClientOption());
                }
            }
        }
        
        /***
         * 
         * @param listener
         * @return
         */
        
        public boolean registerListener(BDLocationListener listener){
            boolean isSuccess = false;
            if(listener != null){
                client.registerLocationListener(listener);
                isSuccess = true;
            }
            return  isSuccess;
        }
        
        public void unregisterListener(BDLocationListener listener){
            if(listener != null){
                client.unRegisterLocationListener(listener);
            }
        }
        
        /***
         * 
         * @param option
         * @return isSuccessSetOption
         */
        public boolean setLocationOption(LocationClientOption option){
            boolean isSuccess = false;
            if(option != null){
                if(client.isStarted())
                    client.stop();
                DIYoption = option;
                client.setLocOption(option);
                isSuccess = true;
            }
            return isSuccess;
        }
        
        public LocationClientOption getOption(){
            return DIYoption;
        }
        /***
         * 
         * @return DefaultLocationClientOption
         */
        public LocationClientOption getDefaultLocationClientOption(){
            if(mOption == null){
                mOption = new LocationClientOption();
                mOption.setLocationMode(LocationMode.Hight_Accuracy);//可选,默认高精度,设置定位模式,高精度,低功耗,仅设备
                mOption.setCoorType("bd09ll");//可选,默认gcj02,设置返回的定位结果坐标系,如果配合百度地图使用,建议设置为bd09ll;
                mOption.setScanSpan(3000);//可选,默认0,即仅定位一次,设置发起定位请求的间隔需要大于等于1000ms才是有效的
                mOption.setIsNeedAddress(true);//可选,设置是否需要地址信息,默认不需要
                mOption.setIsNeedLocationDescribe(true);//可选,设置是否需要地址描述
                mOption.setNeedDeviceDirect(false);//可选,设置是否需要设备方向结果
                mOption.setLocationNotify(false);//可选,默认false,设置是否当gps有效时按照1S1次频率输出GPS结果
                mOption.setIgnoreKillProcess(true);//可选,默认true,定位SDK内部是一个SERVICE,并放到了独立进程,设置是否在stop的时候杀死这个进程,默认不杀死   
                mOption.setIsNeedLocationDescribe(true);//可选,默认false,设置是否需要位置语义化结果,可以在BDLocation.getLocationDescribe里得到,结果类似于“在北京天安门附近”
                mOption.setIsNeedLocationPoiList(true);//可选,默认false,设置是否需要POI结果,可以在BDLocation.getPoiList里得到
                mOption.SetIgnoreCacheException(false);//可选,默认false,设置是否收集CRASH信息,默认收集
            }
            return mOption;
        }
        
        public void start(){
            synchronized (objLock) {
                if(client != null && !client.isStarted()){
                    client.start();
                }
            }
        }
        public void stop(){
            synchronized (objLock) {
                if(client != null && client.isStarted()){
                    client.stop();
                }
            }
        }
        
    }
    

    MyLocationListener.java:

    package com.zwf.locationdemo;
    import android.util.Log;
    import com.baidu.location.BDLocation;
    import com.baidu.location.BDLocationListener;
    import com.baidu.location.Poi;
    
    /*****
     * 定位结果回调,重写onReceiveLocation方法,可以直接拷贝如下代码到自己工程中修改
     */
    public class MyLocationListener implements BDLocationListener {
        @Override
        public void onReceiveLocation(BDLocation location) {
            if (null != location && location.getLocType() != BDLocation.TypeServerError) {
                StringBuffer sb = new StringBuffer(256);
                sb.append("time : ");
                /**
                 * 时间也可以使用systemClock.elapsedRealtime()方法 获取的是自从开机以来,每次回调的时间;
                 * location.getTime() 是指服务端出本次结果的时间,如果位置不发生变化,则时间不变
                 */
                sb.append(location.getTime());
                sb.append("\nerror code : ");
                sb.append(location.getLocType());
                sb.append("\nlatitude : ");
                sb.append(location.getLatitude());
                sb.append("\nlontitude : ");
                sb.append(location.getLongitude());
                sb.append("\nradius : ");
                sb.append(location.getRadius());
                sb.append("\nCountryCode : ");
                sb.append(location.getCountryCode());
                sb.append("\nCountry : ");
                sb.append(location.getCountry());
                sb.append("\ncitycode : ");
                sb.append(location.getCityCode());
                sb.append("\ncity : ");
                sb.append(location.getCity());
                sb.append("\nDistrict : ");
                sb.append(location.getDistrict());
                sb.append("\nStreet : ");
                sb.append(location.getStreet());
                sb.append("\naddr : ");
                sb.append(location.getAddrStr());
                sb.append("\nDescribe: ");
                sb.append(location.getLocationDescribe());
                sb.append("\nDirection(not all devices have value): ");
                sb.append(location.getDirection());
                sb.append("\nPoi: ");
                if (location.getPoiList() != null && !location.getPoiList().isEmpty()) {
                    for (int i = 0; i < location.getPoiList().size(); i++) {
                        Poi poi = (Poi) location.getPoiList().get(i);
                        sb.append(poi.getName() + ";");
                    }
                }
                if (location.getLocType() == BDLocation.TypeGpsLocation) {// GPS定位结果
                    sb.append("\nspeed : ");
                    sb.append(location.getSpeed());// 单位:km/h
                    sb.append("\nsatellite : ");
                    sb.append(location.getSatelliteNumber());
                    sb.append("\nheight : ");
                    sb.append(location.getAltitude());// 单位:米
                    sb.append("\ndescribe : ");
                    sb.append("gps定位成功");
                } else if (location.getLocType() == BDLocation.TypeNetWorkLocation) {// 网络定位结果
                    // 运营商信息
                    sb.append("\noperationers : ");
                    sb.append(location.getOperators());
                    sb.append("\ndescribe : ");
                    sb.append("网络定位成功");
                } else if (location.getLocType() == BDLocation.TypeOffLineLocation) {// 离线定位结果
                    sb.append("\ndescribe : ");
                    sb.append("离线定位成功,离线定位结果也是有效的");
                } else if (location.getLocType() == BDLocation.TypeServerError) {
                    sb.append("\ndescribe : ");
                    sb.append("服务端网络定位失败,可以反馈IMEI号和大体定位时间到loc-bugs@baidu.com,会有人追查原因");
                } else if (location.getLocType() == BDLocation.TypeNetWorkException) {
                    sb.append("\ndescribe : ");
                    sb.append("网络不同导致定位失败,请检查网络是否通畅");
                } else if (location.getLocType() == BDLocation.TypeCriteriaException) {
                    sb.append("\ndescribe : ");
                    sb.append("无法获取有效定位依据导致定位失败,一般是由于手机的原因,处于飞行模式下一般会造成这种结果,可以试着重启手机");
                }
                Log.d("zwf", sb.toString());
            }
        }
    }
    
    

    对应的错误ID:
    61 : GPS定位结果,GPS定位成功。
    62 : 无法获取有效定位依据,定位失败,请检查运营商网络或者wifi网络是否正常开启,尝试重新请求定位。
    63 : 网络异常,没有成功向服务器发起请求,请确认当前测试手机网络是否通畅,尝试重新请求定位。
    65 : 定位缓存的结果。
    66 : 离线定位结果。通过requestOfflineLocaiton调用时对应的返回结果。
    67 : 离线定位失败。通过requestOfflineLocaiton调用时对应的返回结果。
    68 : 网络连接失败时,查找本地离线定位时对应的返回结果。
    161: 网络定位结果,网络定位定位成功。
    162: 请求串密文解析失败,一般是由于客户端SO文件加载失败造成,请严格参照开发指南或demo开发,放入对应SO文件。
    167: 服务端定位失败,请您检查是否禁用获取位置信息权限,尝试重新请求定位。
    502: key参数错误,请按照说明文档重新申请KEY。
    505: key不存在或者非法,请按照说明文档重新申请KEY。
    601: key服务被开发者自己禁用,请按照说明文档重新申请KEY。
    602: key mcode不匹配,您的ak配置过程中安全码设置有问题,请确保:sha1正确,“;”分号是英文状态;且包名是您当前运行应用的包名,请按照说明文档重新申请KEY。
    501~700:key验证失败,请按照说明文档重新申请KEY。

    相关文章

      网友评论

        本文标题:百度定位SDK使用笔记

        本文链接:https://www.haomeiwen.com/subject/ulperttx.html