Вы можете просто передать свое намерение классу, который вы хотите открыть.
@Override
public boolean onOptionsItemSelected(MenuItem item) {
Intent intent;
switch(item.getItemId()) {
case R.id.about_us:
//open AboutUsActivity
intent = new Intent(this, aboutUsActivity.class);
startActivity(intent);
finish();
return true;
case R.id.about_measures:
//add the function to perform here
intent = new Intent(this, aboutMeasuresActivity.class);
startActivity(intent);
finish();
return true;
case R.id.feedback:
//add the function to perform here
intent = new Intent(this, feedbackActivity.class);
startActivity(intent);
finish();
return true;
case R.id.rate:
//add the function to perform here
intent = new Intent(this, rateActivity.class);
startActivity(intent);
finish();
return true;
}
return(super.onOptionsItemSelected(item));
}