I am implementing card view through recycler view in android but my card view is not showing up. I am using custom adapter to populate data to card view. I have tried all th
Change your getItemCount() method to this:
getItemCount()
@Override public int getItemCount() { return mImage.length; }
Right now you are saying your adapter has 0 items, hence why it's not drawing anything.