Android Programming and Technical Programming Technical

What is the difference between intent, sticky intent, and pending intent?

Options
1) intent - is a message passing mechanism between components of android; Sticky Intent - Sticks with android, for future broad cast listeners; Pending Intent - Will be used when some one wants to fire an intent in future.
2) intent - is a message passing mechanism between components of android except for Content Provider; Sticky Intent - Sticks with android, for future broad cast listeners; Pending Intent - Will be used when some one wants to fire an intent in future.
3) intent - is a message passing mechanism between components of android except for content Provider;
Sticky Intent - Sticks with android, for future broad cast listeners; Pending Intent - Will be used when some one wants to fire an intent in future and may be at that time that app is not alive.
4) same as 3rd option, but sticky and pending intent are same.

Read Solution (Total 4)

Android Other Question

What will happen if an activity is started with implicit intent, and there is no matching intent-filter?

Options
1) Nothing will happen, but it will not launch any new screen.
2) Nothing will happen, some how how it launches target component
3) It will throw run time exception - activityNotFoundException, and crashes if it is handled properly.
4) Compile time error.
Which method need to be called to shut down an activity, itself?

Options
1) finish()
2) onStop()
3) onDestroy()
4) None of these