android studio intent activity code example
Example 1: intent android
Intent intent = new Intent(MainActivity.this,Activity.class);
Example 2: navigate to another activity in android
OnClickListener onClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(action));
}
};
Button button = (Button) findViewById(id);
button.setOnClickListener(onClickListener);