Ejemplo n.º 1
0
            public ModalContainer(Context context, Page modal) : base(context)
            {
                _modal = modal;

                _backgroundView = new global::Android.Views.View(context);
                _backgroundView.SetWindowBackground();
                AddView(_backgroundView);

                Android.Platform.SetPageContext(modal, context);
                _renderer = Android.Platform.CreateRenderer(modal);
                Android.Platform.SetRenderer(modal, _renderer);

                AddView(_renderer.View);
            }
Ejemplo n.º 2
0
			public ModalContainer(Context context, Page modal) : base(context)
			{
				_modal = modal;

				_backgroundView = new global::Android.Views.View(context);
				_backgroundView.SetWindowBackground();
				AddView(_backgroundView);

				Android.Platform.SetPageContext(modal, context);
				_renderer = Android.Platform.CreateRenderer(modal);
				Android.Platform.SetRenderer(modal, _renderer);

				AddView(_renderer.ViewGroup);
			}