android gps固定位置,android 通过GPS获取用户地理位置并监听位置变化

LocationActivity.java

package uni.location;

import android.app.Activity;

import android.content.Context;

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

{

//创建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);

Location location =

manager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

//第一次获得设备的位置

updateLocation(location);

//重要函数,监听数据测试

manager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 6000,

10,

locationListener);

}

public void onPause(){

super.onPause();

locationManager.removeListener(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);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值