Exemplo n.º 1
0
 public MyMvxListItemView(Context context,
                        IMvxLayoutInflater layoutInflater,
                        object dataContext,
                        int templateId)
     : base(context, layoutInflater, dataContext, templateId)
 {
 }
Exemplo n.º 2
0
 public MyMvxListItemView(Context context,
                          IMvxLayoutInflater layoutInflater,
                          object dataContext,
                          int templateId)
     : base(context, layoutInflater, dataContext, templateId)
 {
 }
Exemplo n.º 3
0
 public MvxListItemView(Context context,
                        IMvxLayoutInflater layoutInflater,
                        object dataContext,
                        int templateId)
     : base(context, layoutInflater, dataContext)
 {
     _templateId = templateId;
     Content     = AndroidBindingContext.BindingInflate(templateId, this);
 }
Exemplo n.º 4
0
 public MvxListItemView(Context context,
                        IMvxLayoutInflater layoutInflater,
                        object dataContext,
                        int templateId)
     : base(context, layoutInflater, dataContext)
 {
     _templateId = templateId;
     AndroidBindingContext.BindingInflate(templateId, this);
 }
        public GeneralListItemView(Context context,
                                   IMvxLayoutInflater layoutInflater,
                                   Dictionary <string, string> textBindings,
                                   object source,
                                   string templateName)
            : base(context, layoutInflater, source)
        {
            _templateName = templateName;
            var templateId = GetTemplateId();

            Content = this.BindingInflate(templateId, this);
            BindProperties(textBindings);
#warning Need to sort out the HandleClick stuff?
            //this.Click += HandleClick;
        }
 public MvxAndroidBindingContext(Context droidContext, IMvxLayoutInflater layoutInflater, object source = null)
     : base(source)
 {
     _droidContext = droidContext;
     _layoutInflater = layoutInflater;
 }
 protected MvxBaseListItemView(Context context, IMvxLayoutInflater layoutInflater, object dataContext)
     : base(context)
 {
     _bindingContext = new MvxAndroidBindingContext(context, layoutInflater, dataContext);
 }
Exemplo n.º 8
0
 public HostView(Context c, IMvxLayoutInflater layoutInflater, object dataContext, int templateId) : base(c, layoutInflater, dataContext, templateId)
 {
     Console.WriteLine("f**k it, i dont use this");
 }
Exemplo n.º 9
0
 public MvxAndroidBindingContext(Context droidContext, IMvxLayoutInflater layoutInflater, object source = null)
     : base(source)
 {
     _droidContext   = droidContext;
     _layoutInflater = layoutInflater;
 }
 protected MvxBaseListItemView(Context context, IMvxLayoutInflater layoutInflater, object dataContext)
     : base(context)
 {
     _bindingContext = new MvxAndroidBindingContext(context, layoutInflater, dataContext);
 }