It seems like every example I can find of switching between activities involves creating an Intent and passing in the context of a View via an OnClickListener associated wit
This should do it for you:
Intent myIntent = new Intent(this, MyActivityName.class); startActivity(myIntent);
You can call that from anywhere in your current activity.