Connect the RSVP menu item to the activity

This commit is contained in:
bspeice
2013-12-04 12:03:40 -05:00
parent b896f6041f
commit 4826a86706
2 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,8 @@ public class MenuActivity extends Activity {
case R.id.action_home:
startActivity(new Intent(this, Home.class));
break;
case R.id.action_search_rsvp:
startActivity(new Intent(this, Search.class));
}
return true;
}