mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 19:38:21 -05:00
40 lines
961 B
Java
40 lines
961 B
Java
|
package com.example.hw4;
|
||
|
|
||
|
/*
|
||
|
* Bradlee Speice, Brandon Rodenmayer
|
||
|
* ITIS 4180
|
||
|
* In Class 3
|
||
|
* MainActivity.java
|
||
|
*/
|
||
|
|
||
|
import android.os.Bundle;
|
||
|
import android.app.Activity;
|
||
|
import android.content.Intent;
|
||
|
import android.view.Menu;
|
||
|
import android.view.View;
|
||
|
|
||
|
public class MainActivity extends Activity {
|
||
|
|
||
|
@Override
|
||
|
protected void onCreate(Bundle savedInstanceState) {
|
||
|
super.onCreate(savedInstanceState);
|
||
|
setContentView(R.layout.activity_main);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||
|
// Inflate the menu; this adds items to the action bar if it is present.
|
||
|
getMenuInflater().inflate(R.menu.main, menu);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public void onClick(View v) {
|
||
|
// One of our buttons has been clicked, let's start the activity and go!
|
||
|
if (v.getId() == R.id.btnAsync)
|
||
|
startActivity(new Intent(this, PhotoActivity.class));
|
||
|
else
|
||
|
startActivity(new Intent(this, PhotoThread.class));
|
||
|
}
|
||
|
|
||
|
}
|