2011-08-10 10 views
1

保留中の意図」を理解できますか?いくつかの例も本当に助けになるでしょう。保留中の意図と使用方法android

私はそれを求めていくつかの情報を見つけましたが、まだ理解していません。

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を作成することができます。また、インテントを簡単に繰り返すことができます。

(私が間違っているかのようにこれまで私は、とにかく知っているように、誰もが私を修正)

関連する問題