using System; using System.Collections.Generic; using Android.App; using Android.Content; using Android.Preferences; using Android.Runtime; using Android.Views; using Android.Widget; using Android.OS; using Keepass2android.Pluginsdk; namespace MasterKeePlugin { [Activity(Label = "MasterKee", MainLauncher = true, Icon = "@drawable/ic_launcher")] public class MainActivity : Activity { private const string KEY_MK_ENTRY_ID = "KEY_MK_ENTRY_ID"; protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); // Set our view from the "main" layout resource SetContentView(Resource.Layout.Main); Button buttonSelect = FindViewById