Android的Location功能代码

无废话,上代码。此代码为Location功能的简单封装。

<br>

<span style="font-family: monospace; background-color: rgb(240,240,240); white-space: pre;">package arui.csdn.net;</span>


<textarea readonly name="code" class="java">import static android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;

public class LocationUtil {

public static boolean isEnabled(Context context) {
LocationManager mLocationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
if (mLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
return true;
}
if (mLocationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) {
return true;
}
return false;
}

public static void startLocationService(Context context) {
LocationManager mLocationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
1000L, 10, mLocationListener);
mLocationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER, 1000L, 10,
mLocationListener);
}

public static void stopLocationService(Context context) {
LocationManager mLocationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
mLocationManager.removeUpdates(mLocationListener);
}

public static Location getLocationByGPS(Context context) {
LocationManager mLocationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
Location location = mLocationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
return location;
}

public static Location getLocationByNetwork(Context context) {
LocationManager mLocationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
Location location = mLocationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
return location;
}

public static void openLocationSetting(Activity act, int requestCode) {
act.startActivityForResult(new Intent(ACTION_LOCATION_SOURCE_SETTINGS),
requestCode);
}

private static final LocationListener mLocationListener = new LocationListener() {

public void onLocationChanged(Location location) {
// 当坐标改变时触发此函数,如果Provider传进相同的坐标,它就不会被触发
System.out.println("onLocationChanged:" + location.getLatitude());
}

public void onProviderDisabled(String provider) {
// Provider被disable时触发此函数,比如GPS被关闭
System.out.println("onProviderDisabled:" + provider);
}

public void onProviderEnabled(String provider) {
// Provider被enable时触发此函数,比如GPS被打开
System.out.println("onProviderEnabled:" + provider);
}

public void onStatusChanged(String provider, int status, Bundle extras) {
// Provider的转态在可用、暂时不可用和无服务三个状态直接切换时触发此函数
System.out.println("onStatusChanged:" + status);
}
};
}</textarea><br>
需要增加权限:


<span style="white-space: pre;"></span><uses-permission<br><span style="white-space: pre;"></span>android:name="android.permission.ACCESS_FINE_LOCATION" /><br>

<span style="white-space: pre;"></span><uses-permission<br><span style="white-space: pre;"></span>android:name="android.permission.ACCESS_COARSE_LOCATION" /><br>


---------------------------------------------------------------------------

[b]GL(arui319) [/b]

[b]http://blog.csdn.net/arui319[/b]

[b]<本文可以转载,但是请保留以上作者信息。谢谢。>[/b]

---------------------------------------------------------------------------
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值