与 WebService 一起使用时无法显示 Toast 消息
当调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否看过使用AysncTask。使用
AsyncTask
,您可以在onPreExecute()
上显示一个包含消息的对话框。Have you looked at using AysncTask. Using
AsyncTask
you can show a dialog with your message ononPreExecute()
.不要混合 UI 代码和网络代码。请参阅:http://developer.android.com/resources/articles/painless-threading .html
Do NOT mix UI code and network code. See: http://developer.android.com/resources/articles/painless-threading.html
您可以使用
AsyncTask
来运行您的服务并在onPreExecute
中显示Toast
。或者您可以使用普通的
Thread
,但是您需要使用Handler
。以下是启动线程的方法:
You can use
AsyncTask
to run your service and showToast
inonPreExecute
.Or you can use normal
Thread
but, you'll need to useHandler
. Here is how:And here is how you start the thread:
问题是,一旦您进行阻塞 Web 服务调用,UI 线程就会被阻塞,因此它永远不会使用 toast 消息进行更新。当它返回时,toast消息的时间已经过期。
使用 AsyncTask 在线程中运行 Web 服务调用,或者只是创建一个线程,例如,
请注意,如果您创建自己的线程,则只能从 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,
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()
orsendMessage()
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