I am using InteractionDialog to create a little dialog for the user to input a text value.
It works but I see that the InteractionDialog is transparent, and the TextField is transparent too, foreground color is black for the TextField but I need that its background is white.
I tried to set the background color and the setOpaque(true) but the TextField is not affected at all, it is the same.
editText.getStyle().setBgColor(65536 * 255 + 256 * 255 + 255); //couldn't use Color.WHITE
// or editText.getStyle().setBgColor(ColorUtil.WHITE); doen't change the bg color
editText.setOpaque(true);
What's wrong?
Thanks, regards