Android的强大表现在各个方面,在这里介绍一下其中的一个自动获取所在地理位置坐标的功能。Android中通过LocationManager来获取地理位置等相关信息的。
  首先,需要获取LocationManager实例。
  //获得当前位置的坐标
  LocationManager locationManager = (LocationManager)
  getSystemService(LOCATION_SERVICE);//获取LocationManager的一个实例
  locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
  10000, 0, locationListener);
  /*注册一个周期性的位置更新 每隔1000ms更新一次,并且不考虑位置的变化。
  最后一个参数是LocationListener的一个引用*/
  Location location = locationManager.getLastKnownLocation
  (LocationManager.GPS_PROVIDER);
  String latitude = Double.toString(location.getLatitude());//经度
  String longitude = Double.toString(location.getLongitude());//纬度
  String altitude = Double.toString(location.getAltitude());//海拔
  //输出文字
  TextView tv = (TextView) this.findViewById(R.id.local);
  tv.setText("latitude:"+latitude+" longitude:"+longitude
  +" altitude:"+altitude+" ");
  实现LocationListener的引用
  private final LocationListener locationListener = new LocationListener() {
  public void onLocationChanged(Location location) {
  //当坐标改变时触发此函数,如果Provider传进相同的坐标,它就不会被触发
  if (location != null) {
  String latitude = Double.toString(location.getLatitude());//经度
  String longitude = Double.toString(location.getLongitude());//纬度
  String altitude = Double.toString(location.getAltitude());//海拔
  //输出文字
  TextView tv = (TextView) findViewById(R.id.local);
  tv.setText("latitude:"+latitude+" longitude:"
  +longitude+" altitude:"+altitude+" ");
  }
  }
  public void onProviderDisabled(String provider) {

  
  // Provider被disable时触发此函数,比如GPS被关闭
  }
  public void onProviderEnabled(String provider) {
  // Provider被enable时触发此函数,比如GPS被打开
  }
  public void onStatusChanged(String provider, int status, Bundle extras) {
  // Provider的转态在可用、暂时不可用和无服务三个状态直接切换时触发此函数
  }
  };
  最后我们在AndroidManifest.xml中加入GPS权限
  
  如果是在模拟器中调试,可以打开”Window” ?>”Show View” 中打开”Emulator Control” View即可手动设置,或通过KML和GPX文件来设置一个坐标。
  或者使用geo命令,开始?> 运行?>输入 telnet 5554,然后在命令行下输入 geo fix -39.4 116.9 326 ,这三个参数分别代表了经度、纬度和海拔(海拔可不写)
  这样我们就可以获取所在位置的坐标了



本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/beihai1212/archive/2011/03/31/6291344.aspx

更多相关文章

  1. Android之Animation
  2. Android模拟、实现、触发系统按键事件的方法
  3. android OnGestureListener滑动事件详解
  4. Android的Location功能代码
  5. android view的触摸事件坐标
  6. android bounceScrollView
  7. android drawBitmapMesh
  8. 学个明白--Android世界的坐标系
  9. Android(安卓)屏幕滑动事件

随机推荐

  1. Android(安卓)Property Animation属性动
  2. android camera(一):camera模组CMM介绍
  3. android win8效果实现进阶(一)
  4. Android原生项目引入最新的React Native
  5. 安卓巴士Android开发神贴整理
  6. android增加5G热点
  7. android权限设置
  8. Android地图添加标记和文字【代码片段】
  9. ubuntu系统下,搭建Android开发环境!!
  10. Android编译源码时出现的错误: “_FORTIFY