Exemplo n.º 1
0
        public CellViewText(Activity context, CellControllerText controller)
        {
            numberView = new EditText(context);

            numberView.SetMaxLines(1);
            numberView.SetLines(1);
            numberView.SetSingleLine(true);

            numberView.AddTextChangedListener(this);



            cell_controller = controller;
            cell_controller.HookView(this);
        }
 public CellModelText(ColumnModelText parent) : base(parent)
 {
     text       = "";
     controller = new CellControllerText(this);
 }