@Override
 public void onError(ValidationFailure[] failures) {
   RadioButton radio = (RadioButton) view.findViewById(view.getCheckedRadioButtonId());
   if (radio != null) {
     mColor = radio.getCurrentTextColor();
     radio.setTextColor(view.getContext().getResources().getColor(R.color.error));
   }
 }