Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to increase limit for card holder name, currently it takes only 16 #56

Open
imyadavjee opened this issue Nov 28, 2019 · 2 comments
Open

Comments

@imyadavjee
Copy link

No description provided.

@AndreTaxiDigital
Copy link

I want to know too.

@ferglezt
Copy link

ferglezt commented Oct 15, 2020

Override the implementation of this method:


`public void setCardHolderName(String cardHolderName) {
        cardHolderName = cardHolderName == null ? "" : cardHolderName;
        if (cardHolderName.length() > 16) {
            cardHolderName = cardHolderName.substring(0, 16);
        }

        this.mCardHolderName = cardHolderName;
        ((TextView)this.findViewById(TEXTVIEW_CARD_HOLDER_ID)).setText(cardHolderName);
    }`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants