1.

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);


Discussion

No Comment Found