Google News
logo
Android - Quiz(MCQ)
Which method is used to launch a new activity or get an existing activity to do something new?
A)
Context.startService()
B)
Context.startActivity()
C)
Context.sendBroadcast()
D)
All of the above

Correct Answer :   Context.startActivity()


Explanation : Context.startActivity() :The Intent object is passed to this method to launch a new activity or get an existing activity to do something new.

Advertisement