Team Leader Android Developer Question:

Do you know how to launch an activity in android?

Tweet Share WhatsApp

Answer:

Using with intent, we can launch an activity.

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

startActivity(intent);

Download Team Leader Android Developer PDF Read All 67 Team Leader Android Developer Questions
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?