mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
Connect the RSVP menu item to the activity
This commit is contained in:
parent
b896f6041f
commit
4826a86706
@ -27,6 +27,10 @@
|
|||||||
android:name="com.uncc.gameday.activities.Registration"
|
android:name="com.uncc.gameday.activities.Registration"
|
||||||
android:label="@string/title_activity_registration" >
|
android:label="@string/title_activity_registration" >
|
||||||
</activity>
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.uncc.gameday.activities.Search"
|
||||||
|
android:label="@string/title_activity_search_rsvp" >
|
||||||
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name="com.uncc.gameday.activities.Home"
|
android:name="com.uncc.gameday.activities.Home"
|
||||||
android:label="@string/app_name" >
|
android:label="@string/app_name" >
|
||||||
|
@ -54,6 +54,8 @@ public class MenuActivity extends Activity {
|
|||||||
case R.id.action_home:
|
case R.id.action_home:
|
||||||
startActivity(new Intent(this, Home.class));
|
startActivity(new Intent(this, Home.class));
|
||||||
break;
|
break;
|
||||||
|
case R.id.action_search_rsvp:
|
||||||
|
startActivity(new Intent(this, Search.class));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user