1.

Code to call another activity in Android?

Answer»

Code to call ANOTHER ACTIVITY in ANDROID?
Below is the code to call another activity in Adroid

Intent i = NEW Intent(getApplicationContext(), ActivityTwo.class);
startActivity(i);



Discussion

No Comment Found