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) {

第1页第2页

  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) {

第1页第2页

  接上页

  // Provider被disable时触发此函数,比如GPS被关闭

  }

  public void onProviderEnabled(String provider) {

  // Provider被enable时触发此函数,比如GPS被打开

  }

  public void onStatusChanged(String provider, int status, Bundle extras) {

  // Provider的转态在可用、暂时不可用和无服务三个状态直接切换时触发此函数

  }

  };

  最后我们在AndroidManifest.xml中加入GPS权限

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

  如果是在模拟器中调试,可以打开”Window” ?>”Show View” 中打开”Emulator Control” View即可手动设置,或通过KML和GPX文件来设置一个坐标。

  或者使用geo命令,开始?> 运行?>输入 telnet 5554,然后在命令行下输入 geo fix -39.4 116.9 326 ,这三个参数分别代表了经度、纬度和海拔(海拔可不写)

  这样我们就可以获取所在位置的坐标了

第1页第2页

本文链接: http://www.elexcon.com/news/55248.html

更多相关文章

  1. Android任务栈TaskStack
  2. android 获取路径目录方法以及判断目录是否存在,创建目录
  3. Android命令行获取WiFi列表以及参数
  4. Android(安卓)获取汉字拼音
  5. android 获取路径目录方法以及判断目录是否存在,创建目录
  6. Android系列之网络(二)----获取HTTP请求头与响应头
  7. Android(安卓)获取汉字拼音
  8. Android(安卓)左右侧滑组件
  9. Android获取手机信号强度/信号格数

随机推荐

  1. android利用OpenGLES开发动态壁纸用到的G
  2. Android实现计时以及倒计时的几种方法
  3. xml解析(一) XmlPullParser的使用
  4. 【android开发】之【android动态布局方法
  5. 日积月累--android基础知识日记
  6. android 多渠道打包,build.gradle文件配置
  7. android 6.0 创建文件或文件夹失败
  8. Android Thread/Runnable/Handler用法
  9. android startActivityForResult
  10. Android中的文件存储练习