mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-04 23:28:12 -05:00
89b73f5906
These activities (including Alerts) will form the basis of functionality
27 lines
631 B
Java
27 lines
631 B
Java
package com.uncc.gameday.activities;
|
|
|
|
import com.uncc.gameday.R;
|
|
import com.uncc.gameday.R.layout;
|
|
import com.uncc.gameday.R.menu;
|
|
|
|
import android.os.Bundle;
|
|
import android.app.Activity;
|
|
import android.view.Menu;
|
|
|
|
public class Home extends Activity {
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_home);
|
|
}
|
|
|
|
@Override
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
// Inflate the menu; this adds items to the action bar if it is present.
|
|
getMenuInflater().inflate(R.menu.home, menu);
|
|
return true;
|
|
}
|
|
|
|
}
|