diff --git a/src/PluginHostTest/Activity1.cs b/src/PluginHostTest/Activity1.cs new file mode 100644 index 00000000..b22ea02a --- /dev/null +++ b/src/PluginHostTest/Activity1.cs @@ -0,0 +1,173 @@ +using System; +using System.Diagnostics; +using System.Linq; +using Android.App; +using Android.Content; +using Android.Runtime; +using Android.Views; +using Android.Widget; +using Android.OS; +using Keepass2android.Pluginsdk; +using keepass2android; + +namespace PluginHostTest +{ + [Activity(Label = "PluginHostTest", MainLauncher = true, Icon = "@drawable/icon")] + public class Activity1 : Activity + { + int count = 1; + + 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 + Button button = FindViewById