How to navigate from one Activity screen to another Activity screen? In the first screen I\'m having one button if I click the button it has to move to another Activity scre
Intent intentobj=new Intent(FromActivity.this,ToActivity.class); startActivity(intentobj);
or you can simply use
startActivity(new Intent(FromActivity.this,ToActivity.class));