You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am using Stripe library "com.stripe:stripe-android:5.1.0"
While using its CardInputWidget and CardMultilineWidget, i found out that CardMultilineWidget does not support programatically setting of values i.e. Card number, Expiry Date and CVC, whereas the CardInputWidget has setter methods in it which support this feature.
CardInputWidget has these public methods in its class public void setCardNumber(String cardNumber){...} public void setExpiryDate(int month, int year){...} public void setCvcCode(String cvcCode){...}
Whereas CardMultilineWidget does not have these, so is there a reason as to why these aren't available for CardMultilineWidget?
Actually the thing is that i am using this library with card.io library that will scan the card and retrieve these values and show them in CardMultilineWidget to the user. So i wanna ask that, is there a workaround for it to set these values and show them in CardMultilineWidget, without the need of user to entering them manually?
The text was updated successfully, but these errors were encountered:
Hi,
I am using Stripe library "com.stripe:stripe-android:5.1.0"
While using its CardInputWidget and CardMultilineWidget, i found out that CardMultilineWidget does not support programatically setting of values i.e. Card number, Expiry Date and CVC, whereas the CardInputWidget has setter methods in it which support this feature.
CardInputWidget has these public methods in its class
public void setCardNumber(String cardNumber){...}
public void setExpiryDate(int month, int year){...}
public void setCvcCode(String cvcCode){...}
Whereas CardMultilineWidget does not have these, so is there a reason as to why these aren't available for CardMultilineWidget?
Actually the thing is that i am using this library with card.io library that will scan the card and retrieve these values and show them in CardMultilineWidget to the user. So i wanna ask that, is there a workaround for it to set these values and show them in CardMultilineWidget, without the need of user to entering them manually?
The text was updated successfully, but these errors were encountered: