Mobile Developer Question:

How to Start Another Activity?

Mobile Developer Interview Question
Mobile Developer Interview Question

Answer:

Note: you need to past this code on onClick method.

Intent i = new Intent(getApplicationContext(), Activity2.class);
startActivity(i);


Previous QuestionNext Question
Define Android application Content Providers components?Define AVD?