1
0
鏡像自 https://github.com/bspeice/UNCCGameDay 已同步 2025-09-17 20:11:05 -04:00

Connect the RSVP menu item to the activity

此提交包含在:
bspeice
2013-12-04 12:03:40 -05:00
父節點 b896f6041f
當前提交 4826a86706
共有 2 個檔案被更改,包括 6 行新增0 行删除

查看文件

@ -27,6 +27,10 @@
android:name="com.uncc.gameday.activities.Registration"
android:label="@string/title_activity_registration" >
</activity>
<activity
android:name="com.uncc.gameday.activities.Search"
android:label="@string/title_activity_search_rsvp" >
</activity>
<activity
android:name="com.uncc.gameday.activities.Home"
android:label="@string/app_name" >

查看文件

@ -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;
}