如何停止按钮处理程序 - Android

发布于 2024-12-02 06:30:24 字数 395 浏览 0 评论 0原文

当我调用按钮处理程序时,即使处理程序没有完成,应用程序也会在后台继续运行,我如何才能停止这种行为,并回退到线性执行?

qrscan.setOnClickListener( new View.OnClickListener() { //the Button listener
    public void onClick(View view) { //the handler
      if(initiateScan(activity) == null) //first thing i expect it to execute
         initiateSend(activity); //the next thing which should be executed AFTER
      }
   }
);

When I call a buttonHandler, the app just continues in the background even though the Handler didn't finish, how can I stop this behaviour, and fall back to a linear execution?

qrscan.setOnClickListener( new View.OnClickListener() { //the Button listener
    public void onClick(View view) { //the handler
      if(initiateScan(activity) == null) //first thing i expect it to execute
         initiateSend(activity); //the next thing which should be executed AFTER
      }
   }
);

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

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

发布评论

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

评论(1

浅暮の光 2024-12-09 06:30:24

您没有说太多 - 我们需要知道 initiateScaninitiateSend 是如何工作的,但听起来 initiateScan 正在使用 startActivitystartActivityForResult 去做这件事。

如果是这样,您需要确保他们使用 startActivityForResult,并将initiateSend移动到onActivityResult< /code>您的活动的方法。

活动是异步实体,您需要使用 onActivityResult 回调以您正在寻找的线性方式处理操作。

有关详细信息,请阅读此处

You aren't saying much - we'll need to know how initiateScan and initiateSend work, but it sounds like initiateScan is using startActivity or startActivityForResult to do it's thing.

If so, you need to ensure they are using startActivityForResult, and move initiateSend to the onActivityResult method of your activity.

Activities are asynchronous entities and you need to make use of the onActivityResult callback to handle actions in the linear manner you are looking for.

For more info, read here.

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