button.setoncliklistener(new OnClickListener(){
public void onclick (View v){
Intent intent = new Intent ( this, next.class);
startActivity(intent);
finish();
}
});
solved How to I go to next activity [closed]
button.setoncliklistener(new OnClickListener(){
public void onclick (View v){
Intent intent = new Intent ( this, next.class);
startActivity(intent);
finish();
}
});
solved How to I go to next activity [closed]