我正在尝试让我的IntentService显示Toast消息, 但是当从onHandleIntent消息发送它时,toast显示但是卡住了屏幕并且从不离开。 我猜它是因为onHandleIntent方法不会在主服务线程上发生,但是我怎么能移动呢?
有人有这个问题并解决了吗?
答案 0 :(得分:34)
onCreate()
中的初始化Handler
,然后从您的帖子发布到该帖子。
private class DisplayToast implements Runnable{
String mText;
public DisplayToast(String text){
mText = text;
}
public void run(){
Toast.makeText(mContext, mText, Toast.LENGTH_SHORT).show();
}
}
protected void onHandleIntent(Intent intent){
...
mHandler.post(new DisplayToast("did something"));
}
答案 1 :(得分:5)
以下是完整的IntentService类代码,演示了帮助我的Toasts:
package mypackage;
import android.app.IntentService;
import android.content.Intent;
import android.os.Handler;
import android.os.Looper;
import android.widget.Toast;
public class MyService extends IntentService {
public MyService() { super("MyService"); }
public void showToast(String message) {
final String msg = message;
new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_LONG).show();
}
});
}
@Override
protected void onHandleIntent(Intent intent) {
showToast("MyService is handling intent.");
}
}
答案 2 :(得分:3)
使用句柄发布运行内容的Runnable
protected void onHandleIntent(Intent intent){
Handler handler=new Handler(Looper.getMainLooper());
handler.post(new Runnable(){
public void run(){
//your operation...
Toast.makeText(getApplicationContext(), "hello world", Toast.LENGTH_SHORT).show();
}
});