Closed maimuzo closed 9 years ago
in FormValidator.evaluateCondition():
if (target instanceof Activity) { conditionView = ((Activity) target).findViewById(viewId); } else if (target instanceof Fragment) { conditionView = ((Fragment) target).getView().findViewById(viewId); } else if (target instanceof View) { conditionView = ((View) target).findViewById(viewId); } else { throw new FormsValidationException("unknown target " + target); }
this class imports android.support.v4.app.Fragment
fixed by 483c72c050a8c020c83094bad6de505150738d20
in FormValidator.evaluateCondition():
this class imports android.support.v4.app.Fragment