Answers

Question and Answer:

  Home  Team Leader Android Developer

⟩ Do you know how to launch an activity in android?

Using with intent, we can launch an activity.

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

startActivity(intent);

 161 views

More Questions for you: