I am interested in using pending intents with local broadcasts.
To make myself clear, I am using the following for registering receivers and sending broadcast: android.sup
I am interested in using pending intents with local broadcasts.
That is not possible.
The point behind a PendingIntent
is to allow some other process to perform an action you request, such as sending a broadcast.
The point behind LocalBroadcastManager
is to keep broadcast within your process.
Hence, a PendingIntent
can issue a regular broadcast, but not one via LocalBroadcastManager
.