0

我正在编写一个位置服务,带有一个更新间隔来将位置更新发送到服务器。但我试图通过用户输入(AlertDialog)更新服务中的这个间隔变量。硬编码时它工作得很好。

我正在使用此代码从服务的AlertDialog类中获取间隔变量onCreate()

public void onCreate() {
    super.onCreate();


    final boolean tr=true;
      new Thread(new Runnable() {
              public void run() {

                while (tr) {

                    //check your static variable here
                    updateInterval=ShowCurInterval.loadCurInterval(getApplicationContext());//ShowCur Interval is the Alert Dialog calss
                    Log.d(" INTERVAL ","Interval "+ updateInterval);
                  try {
                    Thread.sleep(10000);
                  } catch (InterruptedException e) {
                    e.printStackTrace();
                  }

                }
              }}
               ).start();

      startLocationListener(updateInterval);
}

而且我还可以在 Log 中看到新的 updateInterval 值(从警报对话框中添加)。但requestLocationUpdates()仍使用预定义的 updateInterval 值。

这是 startLocationListener() 方法:

public void startLocationListener(int updateInterval) {
    LocationManager locManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    locManager.removeUpdates(locListener);
    locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, updateInterval, updateDistance, locListener);
    Log.d(getClass().getSimpleName(), "Loclistener started, Updatetime: " + updateInterval);
    Toast.makeText(getApplicationContext(), "UPDATE INTERVAL"+updateInterval,Toast.LENGTH_SHORT );
    preInterval = updateInterval;
}

有没有人有任何建议我如何更新这个变量?

@binW 编辑部分有例外:

    Handler mhandler = new Handler ();
       mhandler.postDelayed( new Runnable(){

          public void run(){
              Looper.prepare();

              updateInterval=SingletonManager.getInstance().loadCurInterval(getApplicationContext());
              SingletonManager.getInstance().saveCurInterval(getApplicationContext(), updateInterval);
              startLocationListener(updateInterval); 
              Log.d(" INTERVAL ","Interval "+ updateInterval);
              //startChecking();


          }
       }, 2000); 

例外:

04-17 03:18:55.250: E/AndroidRuntime(2146): java.lang.RuntimeException: Only one Looper may be created per thread

先感谢您。

4

1 回答 1

1

您在 onCreate() 中调用 startLocationListener(),而不是在为获取 updateInterval 的新值而创建的线程中。但是调用 startLocationListener(updateInterval); 在新线程执行之前执行,因此您获得 updateInterval 的旧值。我相信您应该将代码更改为以下内容:

public Handler handler;
public void onCreate() {
    super.onCreate();

    handler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            startLocationListener(updateInterval);
        }
    };

    final boolean tr=true;
      new Thread(new Runnable() {
         public void run() {
             while (tr) {
                //check your static variable here
                updateInterval=ShowCurInterval.loadCurInterval(getApplicationContext());//ShowCur Interval is the Alert Dialog calss
                handler.sendEmptyMessage(1);
                Log.d(" INTERVAL ","Interval "+ updateInterval);
                try {
                    Thread.sleep(10000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }

                }
              }}
        ).start();
}
于 2012-04-16T13:22:34.303 回答