hi am doing textfeild validation and when the user enters details and clicks submit
if user forgets sometextfields i want to show those text fields in red color
i have tried
textField.getStyle().setBackgroundGradientEndColor(Style.BACKGROUND_GRADIENT_LINEAR_HORIZONTAL, true);
textField.getStyle().setBackgroundGradientStartColor(0x202020, true);
textField.getStyle().setBackgroundGradientEndColor(0x7cfc00,true);
textField.getStyle().setBgImage(null);
but field color dint change
am i missing something ?