Android:来自IntentService的Toast永远保留在屏幕上

时间:2012-09-13 13:55:08

标签: android toast intentservice

我检查了this question,但它似乎没有回答我的问题,这个问题要少得多。我从主进程中的菜单项调用IntentService。它目前只是一个在onHandleIntent()中放置Toast的骨架,最终应该在处理结束时短暂出现以说它已经完成。但是它永远保留在屏幕上(即使应用程序停止时)。我用模拟器和我的Galaxy S2测试了相同的结果。有人能指出我正确的方向吗?

这是服务代码:

 package com.enborne.spine;

 import android.app.IntentService;
 import android.content.Intent;
 import android.util.Log;
 import android.widget.Toast;

 public class SaveFile extends IntentService {
     private final String TAG = "SaveFile";

     public SaveFile() {
         super("SaveFile");
     }

     @Override
     public void onCreate() {
         super.onCreate();
         Log.d(TAG, "Service Started.. ");
     }

     @Override
     public void onDestroy() {
         super.onDestroy();
         Log.d(TAG, "Service Destroyed.. ");
     }

     @Override
     protected void onHandleIntent(Intent intent) {
         // TODO Auto-generated method stub
         Log.d(TAG, "HandleIntent");
         // File saved
         Toast.makeText(this, "File has been saved", Toast.LENGTH_SHORT).show();
     }
 }

(onCreate和onDestroy覆盖仅暂时用于登录Eclipse,因此我可以看到正在发生的事情。)

我从一个活动的菜单中调用它(乱搞上下文只是因为服务没有启动 - 一些白痴忘记将它包含在清单中!):

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    Intent i;
    switch (item.getItemId()) {
    case R.id.chart:
        i = new Intent(getBaseContext(), Chart.class);
        i.putExtra(KEY_CENTRE_LAT, mCentreLat); // centre coordinate
        i.putExtra(KEY_CENTRE_LONG, mCentreLong); // centre coordinate
        i.putExtra(KEY_RADIUS, mRadius); // effective radius
        startActivity(i);
        break;

    case R.id.save:
        Log.d("SaveFile", "Starting service...");
        //      i = new Intent(getBaseContext(), SaveFile.class);
        i = new Intent(this, SaveFile.class);
        startService(i);
        break;
    }
    return true;
}
编辑:我找到了this article,这可能解释了这个问题。引用一句话:

  

但是,您只能在主GUI线程中使用Toast,否则您会遇到Toast消息在一段时间后不会消失的问题(因为主GUI上下文不知道任何有关Toast消息的信息)单独的线程上下文)。

2 个答案:

答案 0 :(得分:8)

在我的编辑中链接到的文章引导我this blog解决了我的问题。我没有在其他地方看到你不能直接从服务发出祝酒词。所以我的onHandleIntent现在看起来像这样:

private Handler handler;

@Override
protected void onHandleIntent(Intent intent)
{
    Log.d(TAG, "onHandleIntent");

    /* Stripped out some code here that I added later to keep it similar to
     * my example above
     */

    handler.post(new Runnable()
    {  
//      @Override
        public void run()
        {
            Toast.makeText(getApplicationContext(), "File has been saved", 
                Toast.LENGTH_SHORT).show();
        }
    });    // Display toast and exit
}

(如果有人能解释为什么我必须在run()上注释掉@Override以避免错误,我将不胜感激。我的应用程序中还有其他几个地方我必须这样做。)< / p>

编辑:我刚刚找到this post这几乎是一回事。我不知道我之前是怎么想的。

答案 1 :(得分:2)

onHandleIntent在工作线程中执行。

我会尝试从UI线程执行Toast.show()。