1
0
mirror of https://github.com/bspeice/itcs4180 synced 2024-11-14 19:38:21 -05:00
itcs4180/HW4/src/com/example/hw4/ImageViewerActivity.java

75 lines
1.6 KiB
Java
Raw Normal View History

2014-03-24 09:48:19 -04:00
package com.example.hw4;
import android.os.AsyncTask;
2014-03-24 09:48:19 -04:00
import android.os.Bundle;
import android.app.Activity;
import android.graphics.Bitmap;
2014-03-24 09:48:19 -04:00
import android.view.Menu;
import android.view.View;
2014-03-24 09:48:19 -04:00
public class ImageViewerActivity extends Activity {
int urlsId;
String[] urls;
int currentIndex;
2014-03-24 09:48:19 -04:00
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_image_viewer);
Bundle extras = getIntent().getExtras();
urlsId = extras.getInt("urls");
urls = getResources().getStringArray(urlsId);
currentIndex = extras.getInt("index");
2014-03-24 09:48:19 -04:00
}
@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;
}
public void onClickPrev(View v) {
displayPrev();
}
public void onClickNext(View v) {
displayNext();
}
public void onClickBack(View v) {
finish();
}
private void displayPrev() {
currentIndex -= 1;
displayImage(currentIndex);
}
private void displayNext() {
currentIndex += 1;
displayImage(currentIndex);
}
public void displayImage(int indexToDisplay) {
}
private class ImageDownloader extends AsyncTask<String, Void, Bitmap> {
@Override
protected Bitmap doInBackground(String... params) {
return null;
}
@Override
protected void onPostExecute(Bitmap result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
}
}
2014-03-24 09:48:19 -04:00
}