Android Activities, Intents
Copy this code and paste it in your HTML
//Override onClick method of button click--
button.
setOnClickListener(new View.
OnClickListener() { public void onClick
(View arg0
) { Intent intent = new Intent(context,anotherActivity);
startActivity(intent);
}
});
Report this snippet