Android使用criteria选择合适的地理位置服务实现方法

所属分类: 软件编程 / Android 阅读数: 1274
收藏 0 赞 0 分享

本文实例讲述了Android使用criteria选择合适的地理位置服务实现方法。分享给大家供大家参考,具体如下:

/* LocationActivity.java
 * @author octobershiner
 * 2011 7 24
 * SE.HIT
 * 利用Criteria选择最优的位置服务,演示定位用户的位置并且监听位置变化的代码
 * */
package uni.location;
import android.app.Activity;
import android.content.Context;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.Vibrator;
import android.util.Log;
import android.widget.TextView;
public class LocationActivity extends Activity {
  /** Called when the activity is first created. */
  //创建lcoationManager对象
  private LocationManager manager;
  private static final String TAG = "LOCATION DEMO";
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //获取系统的服务,
    manager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
    //创建一个criteria对象
    Criteria criteria = new Criteria();
    criteria.setAccuracy(Criteria.ACCURACY_COARSE);
    //设置不需要获取海拔方向数据
    criteria.setAltitudeRequired(false);
    criteria.setBearingRequired(false);
    //设置允许产生资费
    criteria.setCostAllowed(true);
    //要求低耗电
    criteria.setPowerRequirement(Criteria.POWER_LOW);
    String provider = manager.getBestProvider(criteria, false);
    Log.i(TAG, "we choose "+ provider);
    Location location = manager.getLastKnownLocation(provider);
    //第一次获得设备的位置
    updateLocation(location);
    //重要函数,监听数据测试
    manager.requestLocationUpdates(provider, 6000, 10,
            locationListener);
  }
  //创建一个事件监听器
  private final LocationListener locationListener = new LocationListener() {
      public void onLocationChanged(Location location) {
      updateLocation(location);
      }
      public void onProviderDisabled(String provider){
        updateLocation(null);
        Log.i(TAG, "Provider now is disabled..");
      }
      public void onProviderEnabled(String provider){
        Log.i(TAG, "Provider now is enabled..");
      }
      public void onStatusChanged(String provider, int status,Bundle extras){ }
  };
  //获取用户位置的函数,利用Log显示
  private void updateLocation(Location location) {
      String latLng;
      if (location != null) {
      double lat = location.getLatitude();
      double lng = location.getLongitude();
      latLng = "Latitude:" + lat + " Longitude:" + lng;
      } else {
      latLng = "Can't access your location";
      }
      Log.i(TAG, "The location has changed..");
      Log.i(TAG, "Your Location:" +latLng);
  }
}

同时修改manifest.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="uni.location"
   android:versionCode="1"
   android:versionName="1.0">
  <uses-sdk android:minSdkVersion="8" />
  <application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".LocationActivity"
         android:label="@string/app_name">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
</manifest>

演示结果:

可任看到 我们只要求低的精确度并且最低电量,从最后一行可以看到我的虚拟机网络服务并没有打开,但是选择最佳provider的时候,参数选择了false 所以同样可以选择。

希望本文所述对大家Android程序设计有所帮助。

更多精彩内容其他人还在看

Android网络编程之获取网络上的Json数据实例

这篇文章主要介绍了Android网络编程之获取网络上的Json数据实例,本文用完整的代码实例讲解了在Android中读取网络中Json数据的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中的windowSoftInputMode属性详解

这篇文章主要介绍了Android中的windowSoftInputMode属性详解,本文对windowSoftInputMode的9个属性做了详细总结,需要的朋友可以参考下
收藏 0 赞 0 分享

Android网络编程之UDP通信模型实例

这篇文章主要介绍了Android网络编程之UDP通信模型实例,本文给出了服务端代码和客户端代码,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中使用ListView实现漂亮的表格效果

这篇文章主要介绍了Android中使用ListView实现漂亮的表格效果,本文用详细的代码实例创建了一个股票行情表格,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中刷新界面的二种方法

这篇文章主要介绍了Android中刷新界面的二种方法,本文使用Handler、postInvalidate两种方法实现界面刷新,需要的朋友可以参考下
收藏 0 赞 0 分享

Android SDK三种更新失败及其解决方法

这篇文章主要介绍了Android SDK三种更新失败及其解决方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(一)

Android3.0(API level 11)开始,Android设备不再需要专门的菜单键。随着这种变化,Android app应该取消对传统6项菜单的依赖。取而代之的是提供anction bar来提供基本的用户功能
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(二)

这次将继续上一篇文章没有讲完的Menu的学习,上下文菜单(Context menu)和弹出菜单(Popup menu)
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(三)

今天继续昨天没有讲完的Menu的学习,主要是Popup Menu的学习,需要的朋友可以参考下
收藏 0 赞 0 分享

Android显示网络图片实例

这篇文章主要介绍了Android显示网络图片的方法,以实例形式展示了Android程序显示网络图片的方法,非常具有实用价值,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多