Mobile Apps Developer Question:
Do you know how To Start Another Activity?
Answer:
Note: you need to past this code on onClick method.
Intent i = new Intent(getApplicationContext(), Activity2.class);
startActivity(i);
Intent i = new Intent(getApplicationContext(), Activity2.class);
startActivity(i);
Previous Question | Next Question |
Tell us what Are The Advance Features Of Android Os? | Tell us what Are The Features Of Android Os? |