Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
Added in API level 1
public static interface

PendingIntent.OnFinished

android.app.PendingIntent.OnFinished

Class Overview

Callback interface for discovering when a send operation has completed. Primarily for use with a PendingIntent that is performing a broadcast, this provides the same information as calling Context.sendBroadcast() with a final BroadcastReceiver.

Summary

Public Methods
abstract void onSendFinished ( PendingIntent pendingIntent, Intent intent, int resultCode, String resultData, Bundle resultExtras)
Called when a send operation as completed.

Public Methods

public abstract void onSendFinished ( PendingIntent pendingIntent, Intent intent, int resultCode, String resultData, Bundle resultExtras)

Added in API level 1

Called when a send operation as completed.

Parameters
pendingIntent The PendingIntent this operation was sent through.
intent The original Intent that was sent.
resultCode The final result code determined by the send.
resultData The final data collected by a broadcast.
resultExtras The final extras collected by a broadcast.