与 WebService 一起使用时无法显示 Toast 消息

发布于 2024-11-07 22:23:14 字数 371 浏览 0 评论 0原文

当调用 Web 服务时,我需要向用户显示一条消息“正在与服务器通信...请等待几秒钟”。目前我正在使用 Toast.makeText 来显示消息。由于某种原因,我没有看到弹出消息。但有趣的是,当我评论 Web 服务方法调用时,我看到了 Toast 消息。

Toast.makeText(this, "Communicating to the Server...Please wait for few seconds",      
                     Toast.LENGTH_SHORT).show();

//webservice code goes here...

或者满足此要求的任何其他替代方案也可以。

I need to display a message to the user "Communicating to the Server...Please wait for few seconds" when a call to a webservice is made. Currently I'm using Toast.makeText to display the message. For some reason, I don't see the message pop-up. But interestingly when I comment the web service method call, I see the Toast message.

Toast.makeText(this, "Communicating to the Server...Please wait for few seconds",      
                     Toast.LENGTH_SHORT).show();

//webservice code goes here...

Or any other alternative to satisfy this requirement is also fine.

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

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

发布评论

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

评论(4

彩扇题诗 2024-11-14 22:23:14

您是否看过使用AysncTask。使用AsyncTask,您可以在onPreExecute() 上显示一个包含消息的对话框。

Have you looked at using AysncTask. Using AsyncTask you can show a dialog with your message on onPreExecute().

牛↙奶布丁 2024-11-14 22:23:14

您可以使用AsyncTask来运行您的服务并在onPreExecute中显示Toast

或者您可以使用普通的Thread,但是您需要使用Handler。以下是

class MyActivity extends Activity
{
    final Handler mHandler;
    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(...);
        mHandler = new Handler();

        ...
    }

    void showToast(final String text)
    {
        mHandler.post(new Runnable()
        {               
            @Override
            public void run()
            {
                Toast.makeText(MyActivity.this, text, Toast.LENGTH_LONG).show();
            }
         });
    }

    class MyThread implements Runnable
    {
        @Override
        public void run()
        {
            showToast("your custom text");
            //your service code
        }
    }           
}

启动线程的方法:

Thread thread = new Thread(new MyThread());
thread.run();

You can use AsyncTask to run your service and show Toast in onPreExecute.

Or you can use normal Thread but, you'll need to use Handler. Here is how:

class MyActivity extends Activity
{
    final Handler mHandler;
    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(...);
        mHandler = new Handler();

        ...
    }

    void showToast(final String text)
    {
        mHandler.post(new Runnable()
        {               
            @Override
            public void run()
            {
                Toast.makeText(MyActivity.this, text, Toast.LENGTH_LONG).show();
            }
         });
    }

    class MyThread implements Runnable
    {
        @Override
        public void run()
        {
            showToast("your custom text");
            //your service code
        }
    }           
}

And here is how you start the thread:

Thread thread = new Thread(new MyThread());
thread.run();
宫墨修音 2024-11-14 22:23:14

问题是,一旦您进行阻塞 Web 服务调用,UI 线程就会被阻塞,因此它永远不会使用 toast 消息进行更新。当它返回时,toast消息的时间已经过期。

使用 AsyncTask 在线程中运行 Web 服务调用,或者只是创建一个线程,例如,

new Thread(new Runnable() {
  public void run() {
    // WS call here

  }
}).start();

请注意,如果您创建自己的线程,则只能从 UI 线程更新 UI,因此您需要使用 Handler.post()sendMessage() 在 UI 线程上运行 UI 更新。

http://developer.android.com/reference/android/os/AsyncTask。 html
http://developer.android.com/reference/android/os/Handler。 html

The problem is that the UI thread is blocked as soon as you make the blocking web service call, so it never updates with the toast message. By the time it returns, the time for toast message has expired.

Run your web service call in a thread, using AsyncTask, or just create a thread like,

new Thread(new Runnable() {
  public void run() {
    // WS call here

  }
}).start();

Take care that if you create your own thread, you can only update the UI from the UI thread, so you'll need to use Handler.post() or sendMessage() to run the UI update on the UI thread.

http://developer.android.com/reference/android/os/AsyncTask.html
http://developer.android.com/reference/android/os/Handler.html

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