Reputation: 65
What does UserHandle, included in the arguments for sendBroadcastAsUser, add and how does it change how the system handles the intent?
Upvotes: 0
Views: 2363
Reputation: 4831
SendBroadcastAsUser(Intent intent, UserHandle user, string receiverPermission);
Context.startActivity
Used to start a different activity.
Upvotes: 1