Team Leader Android Developer Question:
Do you know how to launch an activity in android?
Answer:
Using with intent, we can launch an activity.
Intent intent = new Intent(this, MyTestActivity.class);
startActivity(intent);
Intent intent = new Intent(this, MyTestActivity.class);
startActivity(intent);
Previous Question | Next 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? |