I have 2 scenarios. One EditText added in designer, on a white panel. Cursor shows as normal.
In other case, over the same panel, I add this edittext
Here, text background is also white, but cursor is not present (well, maybe it is , but I can't see it)
Why could be happening?
In other case, over the same panel, I add this edittext
B4X:
Private t As EditText
t.Initialize("Txt_ConfigChange")
t.Text = Tabla.GetString("translation"))
t.Tag = Tabla.GetInt("ID")
p.AddView(t, 0, LblLabel.Height+1, 100%x, TxT_Label.Height)
t.TextColor = Colors.Black
t.TextSize = 14
Here, text background is also white, but cursor is not present (well, maybe it is , but I can't see it)
Why could be happening?