diff --git a/InClass3/AndroidManifest.xml b/InClass3/AndroidManifest.xml
index 50af039..fa4d8c9 100644
--- a/InClass3/AndroidManifest.xml
+++ b/InClass3/AndroidManifest.xml
@@ -1,4 +1,4 @@
-
+
+
+
+
+
diff --git a/InClass3/res/layout/activity_main.xml b/InClass3/res/layout/activity_main.xml
index af9f093..0b772a8 100644
--- a/InClass3/res/layout/activity_main.xml
+++ b/InClass3/res/layout/activity_main.xml
@@ -8,9 +8,23 @@
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
-
+ android:layout_alignLeft="@+id/btnAsync"
+ android:layout_alignParentTop="true"
+ android:layout_alignRight="@+id/btnAsync"
+ android:layout_marginTop="100dp"
+ android:text="Generate Image Thread" />
+
+
diff --git a/InClass3/res/layout/activity_photo.xml b/InClass3/res/layout/activity_photo.xml
new file mode 100644
index 0000000..2ff3dd9
--- /dev/null
+++ b/InClass3/res/layout/activity_photo.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/InClass3/res/layout/activity_photo_thread.xml b/InClass3/res/layout/activity_photo_thread.xml
new file mode 100644
index 0000000..327ac7b
--- /dev/null
+++ b/InClass3/res/layout/activity_photo_thread.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/InClass3/res/menu/photo.xml b/InClass3/res/menu/photo.xml
new file mode 100644
index 0000000..d122a4b
--- /dev/null
+++ b/InClass3/res/menu/photo.xml
@@ -0,0 +1,9 @@
+
diff --git a/InClass3/res/menu/photo_thread.xml b/InClass3/res/menu/photo_thread.xml
new file mode 100644
index 0000000..d122a4b
--- /dev/null
+++ b/InClass3/res/menu/photo_thread.xml
@@ -0,0 +1,9 @@
+
diff --git a/InClass3/res/values/strings.xml b/InClass3/res/values/strings.xml
index 1e4c196..9ae6218 100644
--- a/InClass3/res/values/strings.xml
+++ b/InClass3/res/values/strings.xml
@@ -1,13 +1,14 @@
-
+
- InClass3
+ In Class 3
Settings
Hello world!
-
- http://farm9.staticflickr.com/8083/8415182658_5402d77eeb_z.jpg
- http://farm9.staticflickr.com/8218/8278724118_9a28024cf5_z.jpg
- http://farm9.staticflickr.com/8196/8114421135_7c5cbb874b_z.jpg
- http://farm9.staticflickr.com/8441/7882624916_5f62cb318f_z.jpg
-
+ http://farm9.staticflickr.com/8083/8415182658_5402d77eeb_z.jpg
+ http://farm9.staticflickr.com/8218/8278724118_9a28024cf5_z.jpg
+ http://farm9.staticflickr.com/8196/8114421135_7c5cbb874b_z.jpg
+ http://farm9.staticflickr.com/8441/7882624916_5f62cb318f_z.jpg
+ UNC Charlotte Photos
+ UNC Charlotte Photos
+
diff --git a/InClass3/src/edu/uncc/itcs4180/hw4/PhotoActivity.java b/InClass3/src/edu/uncc/itcs4180/hw4/PhotoActivity.java
new file mode 100644
index 0000000..0c9c8dd
--- /dev/null
+++ b/InClass3/src/edu/uncc/itcs4180/hw4/PhotoActivity.java
@@ -0,0 +1,22 @@
+package edu.uncc.itcs4180.hw4;
+
+import android.os.Bundle;
+import android.app.Activity;
+import android.view.Menu;
+
+public class PhotoActivity extends Activity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_photo);
+ }
+
+ @Override
+ public boolean onCreateOptionsMenu(Menu menu) {
+ // Inflate the menu; this adds items to the action bar if it is present.
+ getMenuInflater().inflate(R.menu.photo, menu);
+ return true;
+ }
+
+}
diff --git a/InClass3/src/edu/uncc/itcs4180/hw4/PhotoThread.java b/InClass3/src/edu/uncc/itcs4180/hw4/PhotoThread.java
new file mode 100644
index 0000000..90fe817
--- /dev/null
+++ b/InClass3/src/edu/uncc/itcs4180/hw4/PhotoThread.java
@@ -0,0 +1,22 @@
+package edu.uncc.itcs4180.hw4;
+
+import android.os.Bundle;
+import android.app.Activity;
+import android.view.Menu;
+
+public class PhotoThread extends Activity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_photo_thread);
+ }
+
+ @Override
+ public boolean onCreateOptionsMenu(Menu menu) {
+ // Inflate the menu; this adds items to the action bar if it is present.
+ getMenuInflater().inflate(R.menu.photo_thread, menu);
+ return true;
+ }
+
+}