android定位的实现

http://blog.csdn.net/limb99/article/details/18819925

很多应用对定位的要求并不是那么高,也许只是确认一下当前位置大概在城市的那个方向或者临时需要一个当前的经纬度,这时候定位速度应该是第一位的。下面就说说简单定位需求的实现。

步骤

1.启动应用的时候同时启动一个定位服务

2.定位服务获取到定位信息后通过广播告知UI层(activity)

3.UI层处理显示

在下面的的例子中,在获取了当前的位置信息后,便停掉了的定位服务,并没有进行实时定位,当然也可以进行实时定位。

实现代码

定位服务(LocationSvc)代码:

[java]view plaincopy

packagecom.sc.demo.locate;

importcom.sc.demo.common.Common;

importandroid.app.Service;

importandroid.content.Intent;

importandroid.location.Location;

importandroid.location.LocationListener;

importandroid.location.LocationManager;

importandroid.os.Bundle;

importandroid.os.IBinder;

importandroid.util.Log;

importandroid.widget.Toast;

/**

* @author SunnyCoffee

* @date 2014-1-19

* @version 1.0

* @desc 定位服务

*

*/

publicclassLocationSvcextendsServiceimplementsLocationListener {

privatestaticfinalString TAG ="LocationSvc";

privateLocationManager locationManager;

@Override

publicIBinder onBind(Intent intent) {

returnnull;

}

@Override

publicvoidonCreate() {

locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);

}

@Override

publicvoidonStart(Intent intent,intstartId) {

if(locationManager.getProvider(LocationManager.NETWORK_PROVIDER) !=null) locationManager

.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,0,0,

this);

elseif(locationManager.getProvider(LocationManager.GPS_PROVIDER) !=null) locationManager

.requestLocationUpdates(LocationManager.GPS_PROVIDER,0,0,

this);

elseToast.makeText(this,"无法定位", Toast.LENGTH_SHORT).show();

}

@Override

publicbooleanstopService(Intent name) {

returnsuper.stopService(name);

}

@Override

publicvoidonLocationChanged(Location location) {

Log.d(TAG,"Get the current position \n"+ location);

//通知Activity

Intent intent =newIntent();

intent.setAction(Common.LOCATION_ACTION);

intent.putExtra(Common.LOCATION, location.toString());

sendBroadcast(intent);

// 如果只是需要定位一次,这里就移除监听,停掉服务。如果要进行实时定位,可以在退出应用或者其他时刻停掉定位服务。

locationManager.removeUpdates(this);

stopSelf();

}

@Override

publicvoidonProviderDisabled(String provider) {

}

@Override

publicvoidonProviderEnabled(String provider) {

}

@Override

publicvoidonStatusChanged(String provider,intstatus, Bundle extras) {

}

}

UI处理层代码

[java]view plaincopy

packagecom.sc.demo;

importcom.sc.demo.common.Common;

importcom.sc.demo.locate.LocationSvc;

importandroid.os.Bundle;

importandroid.widget.TextView;

importandroid.app.Activity;

importandroid.app.ProgressDialog;

importandroid.content.BroadcastReceiver;

importandroid.content.Context;

importandroid.content.Intent;

importandroid.content.IntentFilter;

publicclassMainActivityextendsActivity {

privateTextView text;

privateProgressDialog dialog;

@Override

protectedvoidonCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

text = (TextView) findViewById(R.id.text);

// 注册广播

IntentFilter filter =newIntentFilter();

filter.addAction(Common.LOCATION_ACTION);

this.registerReceiver(newLocationBroadcastReceiver(), filter);

// 启动服务

Intent intent =newIntent();

intent.setClass(this, LocationSvc.class);

startService(intent);

// 等待提示

dialog =newProgressDialog(this);

dialog.setMessage("正在定位...");

dialog.setCancelable(true);

dialog.show();

}

privateclassLocationBroadcastReceiverextendsBroadcastReceiver {

@Override

publicvoidonReceive(Context context, Intent intent) {

if(!intent.getAction().equals(Common.LOCATION_ACTION))return;

String locationInfo = intent.getStringExtra(Common.LOCATION);

text.setText(locationInfo);

dialog.dismiss();

MainActivity.this.unregisterReceiver(this);// 不需要时注销

}

}

}

公共类

[java]view plaincopy

packagecom.sc.demo.common;

/**

* @author SunnyCoffee

* @date 2014-1-27

* @version 1.0

* @desc desc 公共常量

*

*/

publicclassCommon {

publicstaticfinalString LOCATION ="location";

publicstaticfinalString LOCATION_ACTION ="locationAction";

}

代码涉及了android的四大组件之三--Activity、Service、BroadcastReceiver 。

Activity启动后启动了Service,Service是用来定位的,在Service定位结束后发送广播到BroadcastReceiver,这里的BroadcastReceiver是作为Activity的内部类,所以并不能过AndroidManifest.xml进行注册,所以采用了方法registerReceiver。而定位就是通过注册监听执行回调获得。

项目源码下载地址http://download.csdn.net/detail/limb99/6888499。项目编码utf-8

注:demo只写了简单的功能,没有做容错。比如,功能实现需要有网络和GPS支持,需要开启“位置服务”(也有的是位置与安全,不同手机不同系统略有区别)。在资源评论里有人说定位不到,我想很可能就是没有开启位置相关的服务。自己做过测试通过,机型为 Sony st27i,Coolpad 5891Q,Galaxy S4 GT-i9500,虚拟机未测试。

更新2014-12-03

自己在测试的时候发现有的机型不能定位,自己手中机型较少所以无法确定具体问题。

其中一个机型Coolpad 5217,Android4.3。现在还没有解决方案,方法慎用。

一些定位思想可以参见http://blog.csdn.net/limb99/article/details/8765584

你可能感兴趣的:(android定位的实现)