从工作线程中更新UI需要用到此API
runOnUiThread(new Runnable()
{
public void run()
{
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_LONG;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
});