0
這有點學術,但怎麼來的下列顯示敬酒:在服務中,爲什麼你可以在onDestroy()而不是onHandleIntent()中做麪包?
public class MyService extends IntentService
{
public PdfRotateService() {
super("MyService");
// TODO Auto-generated constructor stub
}
@Override
protected void onHandleIntent(Intent intent)
{
doSomeThings();
}
@Override
public void onDestroy()
{
super.onDestroy();
Toast.makeText(this, text, duration).show();
}
}
,但把Toast.makeText()在onHandleIntent(),而不是不顯示吐司?
實施謝謝,我記得現在閱讀該部分:) –
歡迎您! – Peshal