橘子味的心
标题:9.3 Android GPS开发

要获取精确的位置服务信息需要 GPS 硬件的支持。在应用程序开发阶段,由于模拟器中并没有真正的 GPS 硬件,因此不能获得真实的 GPS 信息。但是可以使用 Eclipse 视图模式的 DDMS 模式模拟 GPS 服务,在如图 1 所示的 Emulator Control 界面中手动发送经纬度信息来测试位置服务。

Emulator Control 界面
图 1  Emulator Control 界面

获取用户当前位置,需要实现以下 4 个基本步骤。

1)在 AndroidManifest.xml 文件中声明相应的权限。

使用 GPS_PROVIDER 定位服务需要以下权限:

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


使用 NETWORK_PROVIDER 定位服务需要以下权限:

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


2)获取 LocationManager 对象。

3)选择合适的 LocationProvider。

4)通过 LocationListener 接口获取位置信息。

实例 GPSLocationDemo 演示了使用 GPS 获取用户信息的过程,运行效果如图 2 所示。

GPSLocationDemo 的运行效果
图 2  实例 GPSLocationDemo 的运行效果

该运行效果所对应的布局文件 main.xml 内容如下:
  1. <?xml version="1.0" encoding= "utf-8"l>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical">
  6.  
  7. <TextView
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="@string/hello" />
  11.  
  12. <Button
  13. android:id="@+id/btn_listen"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. android:text="@string/btn_listen" />
  17.  
  18. <TextView
  19. android:id="@+id/tv_01"
  20. android:layout_width="fill_parent"
  21. android:layout_height="wrap_content"
  22. android:text="" />
  23.  
  24. <TextView
  25. android:id="@+id/tv_02"
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:text="" />
  29. </LinearLayout>
该布局文件所使用的资源文件 strings.xml 内容如下:
  1. <resources>
  2. <string name="app_name">GPSLocation</string>
  3. <string name="hello">使用 GPS 获取位置信息</string>
  4. <string name="btn_listen">获取 GPS 信息</string>
  5. </resources>
实例 GPSLocationDemo 中的主 Activity 文件 GPSLocationActivity.java 的代码如下:
  1. package introduction.android.wifidirectdemo;
  2.  
  3. import android.app.Activity;
  4. import android.content.Context;
  5. import android.location.Location;
  6. import android.location.LocationListener;
  7. import android.location.LocationManager;
  8. import android.os.Bundle;
  9. import android.util.Log;
  10. import android.view.View;
  11. import android.view.View.OnClickListener;
  12. import android.widget.Button;
  13. import android.widget.TextView;
  14.  
  15. public class GPSLocationActivity extends Activity {
  16. /**
  17. * Called when the activity is first created.
  18. */
  19. private Button btn_listen;
  20. private TextView tv_01, tv_02;
  21.  
  22. @Override
  23. public void onCreate(Bundle savedInstanceState) {
  24. super.onCreate(savedInstanceState);
  25. setContentView(R.layout.main);
  26. btn_listen = (Button) findViewById(R.id.btn_listen);
  27. tv_01 = (TextView) findViewById(R.id.tv_01);
  28. tv_02 = (TextView) findViewById(R.id.tv_02);
  29. btn_listen.setOnClickListener(new OnClickListener() {
  30. @Override
  31. public void onClick(View v) {
  32. LocationManager locationManager = (LocationManager)
  33. GPSLocationActivity.this.getSystemService(Context.LOCATION_SERVICE);
  34. locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new MyLocationListener());
  35. }
  36. });
  37. }
  38.  
  39. class MyLocationListener implements LocationListener {
  40. @Override
  41. public void onLocationChanged(Location location) {
  42. // TODO Auto-generated method stub
  43. tv_01.setText("您当前位置的经度为" + location.getLongitude());
  44. tv_02.setText("您当前位置的纬度为" + location.getLatitude());
  45. }
  46.  
  47. @Override
  48. public void onProviderDisabled(String provider) {
  49. //当provider被用户关闭时调用
  50. Log.i("GpsLocation", "provider被关闭! ");
  51. }
  52.  
  53. @Override
  54. public void onProviderEnabled(String provider) {
  55. //当provider被用户开启后调用
  56. Log.i("GpsLocation", "provider被开启! ");
  57. }
  58.  
  59. @Override
  60. public void onStatusChanged(String provider, int status, Bundle extras) {
  61. //当provider的状态在OUT_OF_SERVICE、TEMPORARILY_UNAVAILABLE 和 AVAILABLE 之间发生变化时调用
  62. Log.i("GpsLocation", "provider状态发生改变!");
  63. }
  64. }
  65. }
由以上代码可见,借助于 Android SDK 提供的位置服务 API,仅仅几行代码就可以实现使用 GPS 定位的功能。

LocationListener 用于接收位置发生改变时的通知。当 Provider 提供的位置信息发生改变时,onLocationChanged() 方法会被调用。当不需要使用 LocationListener 进行位置更新时,可以通过 LocationManager.removeUpdates(locationListener) 方法将其移除。