CardArrayRecyclerViewAdapter cardArrayRecyclerViewAdapter = new CardArrayRecyclerViewAdapter(getApplicationContext(), cards);
Above code is showing error. Looks like CardArrayRecyclerViewAdapter constructor will accept only a Card object and not a CustomCard object. How do I do it?
CardArrayRecyclerViewAdapter cardArrayRecyclerViewAdapter = new CardArrayRecyclerViewAdapter(getApplicationContext(), cards);
Above code is showing error. Looks like
CardArrayRecyclerViewAdapter
constructor will accept only aCard
object and not aCustomCard
object. How do I do it?