无法解析方法'createDateStringFromIntegerInput(int,int)'

时间:2019-02-13 19:14:02

标签: android stripe-payments

我正在使用Stripe,并从here精确复制了此代码。在我的android studio项目中,我在此方面遇到错误。

  

createDateStringFromIntegerInput(month,year))

这是我遇到错误的代码

    public void setExpiryDate(
        @IntRange(from = 1, to = 12) int month,
        @IntRange(from = 0, to = 9999) int year) {
    mExpiryDateEditText.setText(DateUtils.createDateStringFromIntegerInput(month, year));
}

有人吗?

0 个答案:

没有答案