InterviewSolution
Saved Bookmarks
| 1. |
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); Note: you need to past this code on onClick method. Intent i = new Intent(getApplicationContext(), Activity2.class); startActivity(i); |
|