mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 19:38:21 -05:00
54 lines
1.3 KiB
Java
54 lines
1.3 KiB
Java
|
package com.example.hw4;
|
||
|
|
||
|
/*
|
||
|
* Bradlee Speice, Brandon Rodenmayer
|
||
|
* ITIS 4180
|
||
|
* Homework 4
|
||
|
* GalleryActivity.java
|
||
|
*/
|
||
|
|
||
|
import android.app.Activity;
|
||
|
import android.os.Bundle;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.Menu;
|
||
|
import android.view.MenuItem;
|
||
|
import android.view.View;
|
||
|
import android.widget.GridView;
|
||
|
import android.widget.Toast;
|
||
|
|
||
|
public class GalleryActivity extends Activity
|
||
|
{
|
||
|
GridView gallery;
|
||
|
int thumbsId;
|
||
|
|
||
|
@Override
|
||
|
protected void onCreate(Bundle savedInstanceState)
|
||
|
{
|
||
|
super.onCreate(savedInstanceState);
|
||
|
setContentView(R.layout.activity_gallery);
|
||
|
|
||
|
thumbsId = getIntent().getExtras().getInt("thumbsId");
|
||
|
Toast.makeText(getApplicationContext(), thumbsId, Toast.LENGTH_LONG).show();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||
|
|
||
|
// Inflate the menu; this adds items to the action bar if it is present.
|
||
|
getMenuInflater().inflate(R.menu.gallery, menu);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||
|
// Handle action bar item clicks here. The action bar will
|
||
|
// automatically handle clicks on the Home/Up button, so long
|
||
|
// as you specify a parent activity in AndroidManifest.xml.
|
||
|
int id = item.getItemId();
|
||
|
if (id == R.id.action_settings) {
|
||
|
return true;
|
||
|
}
|
||
|
return super.onOptionsItemSelected(item);
|
||
|
}
|
||
|
}
|