How many of the following are correct with respect to Activity?
what is a service?
how many of the following are correct with respect to Frame layout?
A1,A2,A and A4 are activities.All activities are called using intents.
Then A1---->A4------>A2------>A3. A4 CALLS A2 with intent flag FLAG_ACTIVITY_NO_HISTORY
when finish() method is called on Activity A3.what will be the current running Activity?
A1,A2,A and A4 are activities.All activities are called using intents.
Then A1---->A2------>A4------>A3. A2 CALLS A4 with intent flag FLAG_ACTIVITY_CLEAR_TOP
when finish() method is called on Activity A3.what will be the current running Activity?
A1,A2,A and A4 are activities.All activities are called using intents.
Then A1---->A2------>A4------>A3. A4 CALLS A3 with NO intent flag
when finish() method is called on Activity A3.what will be the current running Activity?
which of the following are correct with respect to Android run time engine?
Activity results handled by the onActivityResult() method are differentiated from one another using which parameter?
what are Broad cast receivers?