diff --git a/.classpath b/.classpath
new file mode 100644
index 0000000..6e9239f
--- /dev/null
+++ b/.classpath
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/.project b/.project
new file mode 100644
index 0000000..84f256b
--- /dev/null
+++ b/.project
@@ -0,0 +1,33 @@
+
+
+ ImprovedHelloAndroid
+
+
+
+
+
+ com.android.ide.eclipse.adt.ResourceManagerBuilder
+
+
+
+
+ com.android.ide.eclipse.adt.PreCompilerBuilder
+
+
+
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
+
+ com.android.ide.eclipse.adt.ApkBuilder
+
+
+
+
+
+ com.android.ide.eclipse.adt.AndroidNature
+ org.eclipse.jdt.core.javanature
+
+
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..a3a827a
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/ImprovedHelloAndroid.apk b/bin/ImprovedHelloAndroid.apk
new file mode 100644
index 0000000..a7a30d4
Binary files /dev/null and b/bin/ImprovedHelloAndroid.apk differ
diff --git a/bin/classes.dex b/bin/classes.dex
new file mode 100644
index 0000000..f1312d5
Binary files /dev/null and b/bin/classes.dex differ
diff --git a/bin/resources.ap_ b/bin/resources.ap_
new file mode 100644
index 0000000..33c9563
Binary files /dev/null and b/bin/resources.ap_ differ
diff --git a/default.properties b/default.properties
new file mode 100644
index 0000000..a5e3ef5
--- /dev/null
+++ b/default.properties
@@ -0,0 +1,11 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system use,
+# "build.properties", and override values to adapt the script to your
+# project structure.
+
+# Project target.
+target=Google Inc.:Google APIs:7
diff --git a/proguard.cfg b/proguard.cfg
new file mode 100644
index 0000000..12dd039
--- /dev/null
+++ b/proguard.cfg
@@ -0,0 +1,36 @@
+-optimizationpasses 5
+-dontusemixedcaseclassnames
+-dontskipnonpubliclibraryclasses
+-dontpreverify
+-verbose
+-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
+
+-keep public class * extends android.app.Activity
+-keep public class * extends android.app.Application
+-keep public class * extends android.app.Service
+-keep public class * extends android.content.BroadcastReceiver
+-keep public class * extends android.content.ContentProvider
+-keep public class * extends android.app.backup.BackupAgentHelper
+-keep public class * extends android.preference.Preference
+-keep public class com.android.vending.licensing.ILicensingService
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+-keepclasseswithmembernames class * {
+ public (android.content.Context, android.util.AttributeSet);
+}
+
+-keepclasseswithmembernames class * {
+ public (android.content.Context, android.util.AttributeSet, int);
+}
+
+-keepclassmembers enum * {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+-keep class * implements android.os.Parcelable {
+ public static final android.os.Parcelable$Creator *;
+}
diff --git a/res/drawable-hdpi/icon.png b/res/drawable-hdpi/icon.png
new file mode 100644
index 0000000..8074c4c
Binary files /dev/null and b/res/drawable-hdpi/icon.png differ
diff --git a/res/drawable-ldpi/icon.png b/res/drawable-ldpi/icon.png
new file mode 100644
index 0000000..1095584
Binary files /dev/null and b/res/drawable-ldpi/icon.png differ
diff --git a/res/drawable-mdpi/icon.png b/res/drawable-mdpi/icon.png
new file mode 100644
index 0000000..a07c69f
Binary files /dev/null and b/res/drawable-mdpi/icon.png differ
diff --git a/res/layout/main.xml b/res/layout/main.xml
new file mode 100644
index 0000000..ab0eca7
--- /dev/null
+++ b/res/layout/main.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..1d172ab
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,8 @@
+
+
+ Enter Your Text Here:
+ Hello 21w789
+ Press Me!
+ Sleep
+ Hello 21w789
+
diff --git a/src/com/breadcrumbz/android/hello/HelloAndroid.java b/src/com/breadcrumbz/android/hello/HelloAndroid.java
new file mode 100644
index 0000000..12a46ad
--- /dev/null
+++ b/src/com/breadcrumbz/android/hello/HelloAndroid.java
@@ -0,0 +1,88 @@
+package com.breadcrumbz.android.hello;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.view.View.OnClickListener;
+import android.widget.EditText;
+import android.widget.Button;
+import android.widget.TextView;
+import android.widget.Toast;
+import android.content.Context;
+import android.graphics.Color;
+import android.view.View;
+
+public class HelloAndroid extends Activity {
+
+ EditText helloName;
+ TextView helloClass;
+ Button buttonToggle;
+
+ /** Called when the activity is first created. */
+ @Override
+ public void onCreate(Bundle savedInstanceState)
+ {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.main);
+ // Capture our button from layout
+ Button buttonToast = (Button)findViewById(R.id.go);
+ // Register the onClick listener with the implementation above
+ buttonToast.setOnClickListener(mAddListener);
+ // Capture our button from layout
+ buttonToggle = (Button)findViewById(R.id.toggle);
+ // Register the onClick listener with the implementation above
+ buttonToggle.setOnClickListener(cAddListener);
+ }
+
+ // Create an anonymous implementation of OnClickListener
+ private OnClickListener mAddListener = new OnClickListener()
+ {
+ public void onClick(View v)
+ {
+ long id = 0;
+ // do something when button is clicked
+ try
+ {
+ helloName = (EditText)findViewById(R.id.helloName);
+ Context context = getApplicationContext();
+ CharSequence text = "Hello " + helloName.getText() + "!";
+ int duration = Toast.LENGTH_LONG;
+ Toast toast = Toast.makeText(context, text, duration);
+ toast.show();
+ }
+ catch (Exception ex)
+ {
+ Context context = getApplicationContext();
+ CharSequence text = ex.toString() + "ID = " + id;
+ int duration = Toast.LENGTH_LONG;
+ Toast toast = Toast.makeText(context, text, duration);
+ toast.show();
+ }
+ }
+ };
+
+ // Create an anonymous implementation of OnClickListener
+ private OnClickListener cAddListener = new OnClickListener()
+ {
+ public void onClick(View v)
+ {
+ // do something when button is clicked
+ helloClass = (TextView)findViewById(R.id.helloClass);
+ String toggleWord = (String) buttonToggle.getText();
+ if (toggleWord.equals("Sleep"))
+ {
+ helloClass.setTextColor(Color.BLACK);
+ helloClass.setText("Good Bye 21w789");
+ buttonToggle.setText("Wake");
+ findViewById(R.id.window).setBackgroundColor(Color.WHITE);
+ }
+ else
+ {
+ helloClass.setTextColor(Color.WHITE);
+ helloClass.setText("Hello 21w789");
+ buttonToggle.setText("Sleep");
+ findViewById(R.id.window).setBackgroundColor(Color.BLACK);
+ }
+
+ }
+ };
+}
\ No newline at end of file