+ 2
How to open new activity when click a button in android?!
when click on a button open an other activity
1 Odpowiedź
+ 3
Intent intent = new Intent(this, nextActivityClass.class);
startActivity(intent);
when click on a button open an other activity