我刚开始为客户的应用程序使用 android saripaar 库。我想为字段添加自定义验证。但是,似乎没有办法创建自定义注释。我必须在验证器中手动输入规则。
如何为其创建自定义注释?
我刚开始为客户的应用程序使用 android saripaar 库。我想为字段添加自定义验证。但是,似乎没有办法创建自定义注释。我必须在验证器中手动输入规则。
如何为其创建自定义注释?
(披露:我是作者)
Saripaar v2允许您定义自定义注释。
这是你如何做到的。
步骤 1如下定义您的自定义注释。确保您有RUNTIME
保留策略,并且您的注释必须针对FIELD
元素类型。message
和messageResId
属性是必需的,因此请注意名称和类型。
@ValidateUsing(HaggleRule.class)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Haggle {
public int messageResId() default -1; // Mandatory attribute
public String message() default "Oops... too pricey"; // Mandatory attribute
public int sequence() default -1; // Mandatory attribute
public double maximumAskingPrice(); // Your attributes
}
步骤 2通过扩展AnnotationRule
类来定义您的规则。
public class HaggleRule extends AnnotationRule<Haggle, Double> {
protected HaggleRule(Haggle haggle) {
super(haggle);
}
@Override
public boolean isValid(Double data) {
boolean isValid = false;
double maximumAskingPrice = mRuleAnnotation.maximumAskingPrice();
// Do some clever validation....
return isValid;
}
}
步骤 3注册您的规则。
Validator.registerAnnotation(Haggle.class); // Your annotation class instance
就那么简单。如果您愿意,请查看源代码。Saripaar v2 现在可以在 Maven Central 上使用。