0

我的目标是在特定时间间隔(x 秒)内使用 requestlocationupdate() 方法从网络提供商处定期获取位置更新,然后执行 LocationManager.removeUpdates() 方法以删除更新并尽可能降低功耗,

我面临的问题是每 45 秒调用一次 requestlocationupdate() 方法并调用 onlocationchanged 方法,即使它的“mintime”(此方法中的第二个参数)小于 45 !!,为什么会发生这种情况?

另外,第二个问题是在每个间隔期间,我需要调用 requestlocationupdates 方法并记录用户位置的当前经纬度,并将其与记录的最后一个位置的经纬度进行比较,如果它相同(用户仍然静止),显示“你的最后一个位置是……”,如果位置发生变化,显示“你更新的位置是……”。
我该怎么做?

我尝试使用使用 handler.post(myRunnable) 并使用 timertask 类调用可运行对象以每(x 秒)执行一次在 timertask 输入参数中确定的 requestlocationupdates() 方法来解决此问题。

当我测试此代码时,它每 x 秒获取一次纬度和经度,但即使我仍在同一个位置,它的记录值也会发生变化!

另外,在 onlocationchanged() 覆盖方法中编写任何代码是否代表了节能方面的好方法?

另外,你能告诉我如何获得任何网络提供商(wifi / 3G)的准确性吗?

任何帮助将不胜感激!

代码看起来像:

初始化:

Timer t1;
Timer t2;
TimerTask mTimerTask1;
TimerTask  mTimerTask2;
Handler hand;
Handler hand1;
public LocationManager locationManager;
// flag for GPS status
boolean isGPSEnabled = false;

// flag for network status
boolean isNetworkEnabled = false;
Location location; // location
double latitude; // latitude
double longitude; // longitude
double Altitude; // longitude
double accuracy; // accuracy


// The minimum distance to change notifications Updates in meters
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 0; // 0 meters

// The minimum time between notifications updates in milliseconds
private static final long MIN_TIME_BW_UPDATES = 10; // 10 sec 

处理程序部分:

 Runnable run1 = new Runnable() {
    public void run() {

        mTimerTask1 = new TimerTask() {
            public void run() {
                hand.post(new Runnable() {
                    public void run() {
                        if(check_conectivity()){
                            //flag1=false;
                            get_location();
                            time++;
                        }

                    }
                });

            }
        };
t1.scheduleAtFixedRate(mTimerTask1, 0, 10000);

    }
};

check_connectivity 方法:

public boolean check_conectivity(){


    // put the reference LocationManger
    locationManager = (LocationManager)getSystemService(LOCATION_SERVICE);
    // getting network status
    // isProviderEnabled ==> Returns the current enabled/disabled status of the NETWORK_PROVIDERr.
    //  If the user has enabled this provider in the Settings menu, true is returned otherwise false is returned
    isNetworkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);

    if ( !isNetworkEnabled) {
        // no network provider is enabled
        showSettingsAlert();
        return false;

    } 
    else{

        return true;
    }

}

获取位置方法:

public void get_location(){

                    if (isNetworkEnabled) {

    locationManager.requestLocationUpdates(
            LocationManager.NETWORK_PROVIDER,MIN_TIME_BW_UPDATES,MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
    Log.d("Network", "Network");

onlocationchanged() 覆盖方法:

if (locationManager!= null){

    location = locationManager
            .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);

    if (location != null) {
        latitude = location.getLatitude();
        longitude = location.getLongitude();

        tv2.setText("Your last Location is - \nLat: " + latitude + "\nLong: " + longitude );
        tv3.setText("Last estimeted location number : " + time1);
        time1++;
        stopUpdating();
4

1 回答 1

0

你能告诉我如何获得任何网络提供商的准确性(wifi / 3G)

据我所知,你不能。但是您可以过滤响应并告诉设备仅在准确性为......时才通知您。

第一个你可以postDelayed使用post

private int mSampleDurationTime = 10000; // 10 sec for example 
...    
mHandler.postDelayed(mRunnable, mSampleDurationTime);`

第二,您可以尝试获得我的答案之一中描述的“最佳位置”,请参见此处的链接

希望对你有帮助

于 2013-09-13T22:12:18.913 回答