I have two Activitys, named App and Gallery.
Activity
App
Gallery
App contains frontend buttons and functionalities, Gallery
if your Gallery.java is an activity you could start it by calling startActivity(new Intent(this, Gallery.class));
startActivity(new Intent(this, Gallery.class));
Use an Intent
Intent intent = new Intent(this,Gallery.class); intent.putExtra(<key>,<value>); startActivity(intent);