我正在使用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));
}
有人吗?