Tuesday 4 August 2015

Android Important Question

What is an Android PendingIntent?


up vote508down voteaccepted
PendingIntent is a token that you give to a foreign application (e.g. NotificationManagerAlarmManager, Home Screen AppWidgetManager, or other 3rd party applications), which allows the foreign application to use your application's permissions to execute a predefined piece of code.
If you give the foreign application an Intent, and that application sends/broadcasts the Intentyou gave, they will execute the Intent with their own permissions. But if you instead give the foreign application a PendingIntent you created using your own permission, that application will execute the contained Intent using your application's permission.

What is the size of picasso image lib? 125kb

Difference between sqlite and shared preferences?


No comments:

Post a Comment