android asynTask 到 Activity 问题?

发布于 2024-11-27 16:18:12 字数 951 浏览 3 评论 0原文

我开发了一个 GPS 应用程序。我的应用程序有一个服务,负责通过服务器将 GPS 发送到服务器...

Service -----> AysncTask(sendServer)
// then in service i broadcast some variable

myFilteredResponse = new Intent(GPS_FILTER);
        myFilteredResponse.putExtra("latitude",      Double.valueOf(twoFormat.format(location.getLatitude())));
        myFilteredResponse.putExtra("longitude", Double.valueOf(twoFormat.format(location.getLongitude())));
        myFilteredResponse.putExtra("network", MyGPS.cur_network_status);

时,我的 UI 将发生变化

然后在我的 Activity 中,我创建一个广播接收器来接收所有这些变量,它工作正常,当我们有新的纬度和经度 我的 AysncTask 当发送到服务器时,我将获得服务器识别的位置,所以我想更新我的 UI 界面,所以我 1 2 也使用广播,但它不起作用!

结构

                                  broadcast
service ( on location changed ) ------------->   UI interface

            broadcast??
AsyncTask ------------->   UI interface

我不能在我的 AsyncTask 中使用 sendBroadcast 因为我的 AsyncTask 不是活动 有什么想法吗?

I develop an GPS app. my app have a service that responsible to send GPS to server through server....

Service -----> AysncTask(sendServer)
// then in service i broadcast some variable

myFilteredResponse = new Intent(GPS_FILTER);
        myFilteredResponse.putExtra("latitude",      Double.valueOf(twoFormat.format(location.getLatitude())));
        myFilteredResponse.putExtra("longitude", Double.valueOf(twoFormat.format(location.getLongitude())));
        myFilteredResponse.putExtra("network", MyGPS.cur_network_status);

then in my Activity I create a broadcast receiver to receive all these variable n it works fine, my UI then will change when we have new lat n lon

in my AysncTask when send to server i will get the location identify by server so i want to update my UI interface so i 1 2 use broadcast as well but it's not work !

structure

                                  broadcast
service ( on location changed ) ------------->   UI interface

            broadcast??
AsyncTask ------------->   UI interface

i can't use sendBroadcast in my AsyncTask since my AsyncTask is not activity any Idea?

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

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

发布评论

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

评论(1

短暂陪伴 2024-12-04 16:18:12

我猜你的问题是从服务获取数据。

您可以将服务绑定到 UI 并从 Activity 中调用该服务。

这是一个开源项目。 链接

这是服务代码。 链接

这是用户界面。 链接

编辑:
如果你想使用 AsyncTask 进行 UI 更新,那么你可以使用在 UI 线程中运行的 onPostExecute

编辑:
干得好。异步任务示例。 链接

i guess you problem is to get the data from the service.

you can bind the service to the UI and call the service from within the activity.

here is an opensource project. Link.

this is the service code. Link.

this is the UI. Link

EDIT:
if you want to do UI updates using AsyncTask then you can use onPostExecute which runs in UI thread.

EDIT:
Here you go. AsyncTask Example. Link.

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