I\'m new in the android develop world. I created simple application and created a simple GUI with one button. If the user presses this button, I want to change the screen
Set the button's onClick to a method that uses Intent.
XML:
Java method:
public void to_different_page(View view) { Intent intent = new Intent(this, browse_post_activity.class); startActivity(intent); }