diff --git a/src/ArtTestApp.zip b/src/ArtTestApp.zip new file mode 100644 index 00000000..292094c3 Binary files /dev/null and b/src/ArtTestApp.zip differ diff --git a/src/ArtTestApp/Activity1.cs b/src/ArtTestApp/Activity1.cs new file mode 100644 index 00000000..e6e66c74 --- /dev/null +++ b/src/ArtTestApp/Activity1.cs @@ -0,0 +1,45 @@ +using System; + +using Android.App; +using Android.Content; +using Android.Runtime; +using Android.Views; +using Android.Widget; +using Android.OS; + +namespace ArtTestApp +{ + [Activity(Label = "ArtTestApp", MainLauncher = true, Icon = "@drawable/icon")] + public class Activity1 : Activity + { + + protected override void OnCreate(Bundle bundle) + { + base.OnCreate(bundle); + + // Set our view from the "main" layout resource + SetContentView(Resource.Layout.Main); + + // Get our button from the layout resource, + // and attach an event to it + FindViewById