Exemplo n.º 1
0
 public ContentLayout(Context context)
     : base(context)
 {
     if (mController == null)
     {
         mController = new BaseContainerController(this);
     }
 }
 public ActionsLayout(Context context, IAttributeSet attrs)
     : this(context, attrs, 0)
 {
     if (mController == null)
     {
         mController = new BaseContainerController(this);
     }
 }
 public ActionsLayout(Context context, IAttributeSet attrs, int defStyle)
     : base(context, attrs, defStyle)
 {
     if (mController == null)
     {
         mController = new BaseContainerController(this);
     }
 }
 public ActionsLayout(Context context)
     : this(context, null)
 {
     if (mController == null)
     {
         mController = new BaseContainerController(this);
     }
 }
Exemplo n.º 5
0
        public ContentLayout(Context context, IAttributeSet attrs, int defStyle)
            : base(context, attrs, defStyle)
        {
            if (mController == null)
            {
                mController = new BaseContainerController(this);
            }

            // We need to be sure we have horizontal layout to add shadow to left border
            Orientation = Orientation.Horizontal;
        }