How to solve this question?
holder.cardView.setBackgroundResource(R.drawable.in_message_bg);
How to solve this question?
holder.cardView.setBackgroundResource(R.drawable.in_message_bg);
Try this
card.setCardBackgroundColor(R.drawable.circle)
or You could try via xml
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
card:cardBackgroundColor="#ff00ff"
card:cardElevation="4dp">
Hope this works.