整理不同的处理程序android

发布于 2024-09-30 02:57:40 字数 161 浏览 3 评论 0原文

所有,我想创建多个根据用户选择触发的处理程序,但此处理程序实现相同的可运行方法。唯一的区别是它们调用不同的 postDelayed() 方法。我如何在不为可运行程序重写相同代码的情况下实现这一目标?

我仍然不清楚handleMessages()是如何工作的以及它是否可以用于此目的?...谢谢

all, i want to create multiple handlers that gets triggered based on users selection, but this handlers implement the same runnable method. the only difference is that they call different postDelayed() method. how do i go about achieving this without rewriting the same code for the runnable?

i am still not clear about how the handleMessages() works and if it can be used for this?.. thank you

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

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

发布评论

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

评论(1

讽刺将军 2024-10-07 02:57:40

使用处理程序并在其周围使用开关盒。通过向处理程序发送消息来更新视图

Handler Handlerobject;

Handlerobject= new Handler()
{
  public void handleMessage(Message msg) {

  switch(msg.what)
  {
   case 1:
  // Your code to update the UI

   break;

   case 2:
  // Your code to update the UI
   break;           
  }         
}};

Handlerobject.sendEmptyMessage(1) or sendEmptyMessageDelayed

Use a handler and use a switch case around it. Update the view by sending a message to your handler

Handler Handlerobject;

Handlerobject= new Handler()
{
  public void handleMessage(Message msg) {

  switch(msg.what)
  {
   case 1:
  // Your code to update the UI

   break;

   case 2:
  // Your code to update the UI
   break;           
  }         
}};

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