Answers for "cardbackgroundcolor android programmatically"

1

get cardview background color programmatically

private val cardView: CardView = itemView.findViewById(R.id.card_view)
cardView.setCardBackgroundColor(ContextCompat.getColor(context, R.color.your_color))
Posted by: Guest on June-20-2021
0

how to change background tint color programmatically android

Drawable buttonDrawable = button.getBackground();
    buttonDrawable = DrawableCompat.wrap(buttonDrawable);
    //the color is a direct color int and not a color resource
    DrawableCompat.setTint(buttonDrawable, Color.RED);
    button.setBackground(buttonDrawable);
Posted by: Guest on February-05-2021

Code answers related to "cardbackgroundcolor android programmatically"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language