Coder Social home page Coder Social logo

Comments (5)

itamarkaufman avatar itamarkaufman commented on July 23, 2024

Also using Recycler View and can't fill the card from the onBindViewHolder

from creditcardview.

qazimusab avatar qazimusab commented on July 23, 2024

Can't fill the card at all and not using RecyclerView

from creditcardview.

vrfloppa avatar vrfloppa commented on July 23, 2024

As a temporary solution, you can call private method 'initDefaults' on your CreditCardView object via reflection. It invokes all edittext.setText methods with the string values, that you have supplied to view earlier.

I bind data to CreditCardView like this (yep, its kotlin)

private fun createViewFromCard(card: Card): View {
        return CreditCardView(context).apply {
            isEditable = false
            cardNumber = card.id
            background = ViewUtils.createCardDrawable(card.color)
            cardName = card.owner
            expiryDate = card.validTill

            val invalidateMethod = this.javaClass.getDeclaredMethod("initDefaults")
            invalidateMethod.isAccessible = true
            invalidateMethod.invoke(this)
        }
    }

from creditcardview.

vinaygaba avatar vinaygaba commented on July 23, 2024

Can you try this @itamarkaufman @lovekeshargalon @qazimusab

  • Add JitPack to the project's build.gradle
allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}
  • Add this project's dependency in the app's build.gradle
dependencies {
    compile 'com.github.vinaygaba:CreditCardView:v1.0.3'
}

If this doesn't solve your problem, I will fix it over the weekend. Would really appreciate if you could give this a shot.

from creditcardview.

parthibans avatar parthibans commented on July 23, 2024

how to removed card type like visa,master....
i need only blank car type pls suggest me

from creditcardview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.