mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 19:38:21 -05:00
23 lines
552 B
Java
23 lines
552 B
Java
|
package com.example.hw4;
|
||
|
|
||
|
import android.os.Bundle;
|
||
|
import android.app.Activity;
|
||
|
import android.view.Menu;
|
||
|
|
||
|
public class ImageViewerActivity extends Activity {
|
||
|
|
||
|
@Override
|
||
|
protected void onCreate(Bundle savedInstanceState) {
|
||
|
super.onCreate(savedInstanceState);
|
||
|
setContentView(R.layout.activity_image_viewer);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||
|
// Inflate the menu; this adds items to the action bar if it is present.
|
||
|
getMenuInflater().inflate(R.menu.image_viewer, menu);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|