protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); DroidResources.Initialise(typeof(Resource.Layout)); var parser = new DroidElementBuilder(); var setter = new ExampleActionPropertySetter(); setter.Actions["ShowDialogActivity"] = (sender, args) => StartNew(); setter.Actions["ShowDialogListViewActivity"] = (sender, args) => ClickList(); setter.Actions["ElementTest"] = (sender, args) => ClickElementTest(); parser.CustomPropertySetters["Action"] = setter; var description = Newtonsoft.Json.JsonConvert.DeserializeObject <ElementDescription>(JsonText); Root = parser.Build(description) as RootElement; /* * Root = new RootElement("Test Root Elem") * { * new Section * { * new StringElement("Label", "Only Element in a Blank Section"), * }, * new Section("Test Header", "Test Footer") * { * new ButtonElement("DialogActivity", (o, e) => StartNew()), * new StringElement("DialogListView Activity") * { * Click = (o, e) => ClickList(), * LayoutName = "dialog_labelfieldright" * }, * new BooleanElement("Push my button", true), * new BooleanElement("Push this too", false), * new StringElement("Text label", "Click for EntryElement Test") * { * Click = (o, e) => ClickElementTest(), * }, * }, * new Section("Part II") * { * new StringElement("This is the String Element", "The Value"), * new CheckboxElement("Check this out", true), * new EntryElement("Username", string.Empty){ Hint = "Enter Login", }, * new EntryElement("Password", string.Empty) { * Hint = "Enter Password", * Password = true, * }, * }, * new Section("Group", new ViewElement(Android.Resource.Layout.SimpleListItem1) * { Populate = view => { view.FindViewById<TextView>(Android.Resource.Id.Text1).Text = "Custom footer view"; }, }) * { * new RootElement("Radio Group", new Android.Dialog.RadioGroup("dessert", 1)) * { * new Section * { * new RadioElement("Ice Cream Sandwich", "dessert"), * new RadioElement("Honeycomb", "dessert"), * new RadioElement("Gingerbread", "dessert"), * }, * }, * } * }; */ ValueChanged += root_ValueChanged; }
protected virtual void InitializeDialogBinding(Type resourceLayoutType) { DroidResources.Initialise(resourceLayoutType /*typeof(Resource.Layout)*/); }