在 Android 中使用计时器每 10 分钟跟踪一次 GPS

发布于 2024-10-16 03:29:19 字数 192 浏览 2 评论 0原文

我正在开发一个 Android 应用程序,并且正在使用一项每 10 分钟通过 GPS 跟踪一次位置的服务。但是当我将位置侦听器放入计时器任务中时,它会抛出异常:

无法将代码放入未调用looper.prepare()的线程内。

有人对这个问题有任何见解吗?

I am developing an android application and I am using a service that tracks location via GPS every 10 minutes. But when I put the location listener in a timer task, it throws an exception:

Cannot put code inside thread that has not called looper.prepare().

Does anyone have any insight on this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

阪姬 2024-10-23 03:29:19

您无需每 10 分钟启动一项服务来接收位置更新
相反,

 mLocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
 mLocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 600000, 0, mLocListener);

它会每 10 分钟自动向监听器发送一次更新

当你遇到像 Looper 这样的错误时, 。这意味着您不允许从主 UI 工作线程之外的其他线程执行某些操作。

您正在运行什么代码并收到此错误。从主 UI 线程执行代码。或者
通过主线程在主类中创建一个 Handler 对象

 Handler mHandler = new Handler();

然后在任何其他线程中执行类似的操作

  new Thread(new Runnable(){ public void run(){

           // any of your code
        mHandler.post(new Runnable(){public void run(){

         // the code giving you error Looper
        }});
   }}).start();

You need not to start a service for recieving locationUpdate every 10 min
instead do something like this

 mLocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
 mLocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 600000, 0, mLocListener);

this will automatically send update to the listener every 10 min

When ever you got error like Looper . that mean you are not allowed to do something from other then Main UI Worker thread.

What so code you are running and getting this error . execute the code from Main UI Thread. or
create a Handler object in your main class by Main Thread

 Handler mHandler = new Handler();

Then in any of your other thread do something like this

  new Thread(new Runnable(){ public void run(){

           // any of your code
        mHandler.post(new Runnable(){public void run(){

         // the code giving you error Looper
        }});
   }}).start();
盛夏已如深秋| 2024-10-23 03:29:19

这个方法很简单,可以更新UI线程:

      new CountdownTimer(30000, 1000) { 

    public void onTick(long millisUntilFinished) { 
        mTextField.setText("seconds remaining: " + millisUntilFinished / 1000); 
    } 

    public void onFinish() { 
        mTextField.setText("done!"); 
    } 
 }.start(); 

This method is easy and can update UI thread:

      new CountdownTimer(30000, 1000) { 

    public void onTick(long millisUntilFinished) { 
        mTextField.setText("seconds remaining: " + millisUntilFinished / 1000); 
    } 

    public void onFinish() { 
        mTextField.setText("done!"); 
    } 
 }.start(); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文