如何使用braintree cardform创建新的信用卡验证

时间:2018-09-23 21:32:54

标签: android braintree

在验证信用卡时,我正在使用此库使我的生活更轻松,但是在我的国家/地区,我想使用此库添加新的卡验证,但似乎无法更改!我只能访问活动中传递的信息。

CardForm cardForm = (CardForm) findViewById(R.id.card_form);
    cardForm.cardRequired(true)
    .expirationRequired(true)
    .cvvRequired(true)
    .postalCodeRequired(true)
    .mobileNumberRequired(true)
    .mobileNumberExplanation("SMS is required on this number")
    .actionLabel("Purchase")
    .setup(activity);

然后:

cardForm.getCardNumber();
cardForm.getExpirationMonth();

0 个答案:

没有答案