如何从服务中获取价值?

发布于 2024-10-06 23:21:25 字数 180 浏览 0 评论 0原文

我正在编写一个应用程序,其中有两项活动和一项服务。 现在我想通过主要活动从服务中获取一些值并将这些值发送到第二个活动。基本上我想从服务中获取一个字符串数组并将该数组发送到下一个活动。我知道我可以借助 Intent.putextra() 将该 sring 数组发送到下一个活动。 但我不知道如何从后台运行的服务获取字符串数组。请帮我.. 谢谢..

I am writing an application in which i have two Activities and one service.
Now i want to get some values from service through main activity and send that values to second activity. Basically i want to get a string array back from service and send that array in to next activity. I know i can send that sring array to next activity by the help of Intent.putextra().
But i don't how to get string array from service which is running in background. Please help me..
Thankx..

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

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

发布评论

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

评论(1

勿忘初心 2024-10-13 23:21:25
 public class ResponseReceiver extends BroadcastReceiver {
    public static final String ACTION_RESP = "com.mamlambo.intent.action.MESSAGE_PROCESSED";

    @Override
    public void onReceive(Context context, Intent intent) {

        // Update UI, new "message" processed by SimpleIntentService

       String text = (String)intent.getStringExtra(Login.PARAM_OUT_MSG);
    }
 }
 public class ResponseReceiver extends BroadcastReceiver {
    public static final String ACTION_RESP = "com.mamlambo.intent.action.MESSAGE_PROCESSED";

    @Override
    public void onReceive(Context context, Intent intent) {

        // Update UI, new "message" processed by SimpleIntentService

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