2011-08-10 51 views
1

有人可以幫我理解「等待意圖」?一些例子也真的有用。什麼是未決意圖和使用它一個機器人

我已經爲它找到了一些信息,但我仍然無法理解它。

NotificationManager notificationManager; 
PendingIntent pendingIntent; 

Updater() { 
    notificationManager = (NotificationManager) UpdaterService.this 
     .getSystemService(Context.NOTIFICATION_SERVICE); 
    notification = new Notification(android.R.drawable.stat_sys_download, 
     "MyTwitter", System.currentTimeMillis()); 
    pendingIntent = PendingIntent.getActivity(UpdaterService.this, 0, 
     new Intent(UpdaterService.this, Timeline.class), 0); 
} 
+1

請定義:'FRND,QUS,explian,pls',我沒有理解..的 – Predator

+0

可能重複[什麼是待定的意圖?](http://stackoverflow.com/questions/2808796/what-is-pending-intent) –

+0

@gens沒有需要你明白..他他 – shyam

回答

6

一個待定的意圖,就像描述一個意圖供以後使用。這是一種真正意義上的,就像有一個配方可以再次實現同樣的意圖一樣。

對於AlarmManager,這意味着它可以將PendingIntent存儲在其他地方,並在需要時製作意圖。這也意味着Intent可以輕鬆地重複。

(據我知道反正,有人糾正我,如果我錯了)

相關問題