Team Leader Android Developer Question:

Do you know how to launch an activity in android?

Team Leader Android Developer Interview Question
Team Leader Android Developer Interview Question

Answer:

Using with intent, we can launch an activity.

Intent intent = new Intent(this, MyTestActivity.class);

startActivity(intent);


Previous QuestionNext Question
Tell me what is the order of dialog-box in android?Tell me what are the type of flags to run an application in android?