2 writes to _view
Microsoft.Maui.Controls.Compatibility (2)
Android\Cells\EntryCellRenderer.cs (2)
18 if ((_view = convertView as EntryCellView) == null) 19 _view = new EntryCellView(context, item);
20 references to _view
Microsoft.Maui.Controls.Compatibility (20)
Android\Cells\EntryCellRenderer.cs (20)
22 _view.TextChanged = null; 23 _view.FocusChanged = null; 24 _view.EditingCompleted = null; 38 _view.TextChanged = OnTextChanged; 39 _view.EditingCompleted = OnEditingCompleted; 41 return _view; 46 if (!_view.IsAlive()) 101 _view.SetRenderHeight(Cell.RenderHeight); 107 _view.EditText.UpdateHorizontalAlignment(entryCell.HorizontalTextAlignment); 113 _view.EditText.UpdateVerticalAlignment(entryCell.VerticalTextAlignment); 119 _view.EditText.Enabled = entryCell.IsEnabled; 126 _view.EditText.InputType = keyboard.ToInputType(); 130 _view.EditText.KeyListener = GetDigitsKeyListener(_view.EditText.InputType); 136 _view.LabelText = ((EntryCell)Cell).Label; 141 _view.SetLabelTextColor(((EntryCell)Cell).LabelColor, global::Android.Resource.Attribute.TextColor); 146 _view.UpdateFlowDirection(ParentView); 152 _view.EditText.Hint = entryCell.Placeholder; 158 if (_view.EditText.Text == entryCell.Text) 161 _view.EditText.Text = entryCell.Text;