change background color programmatically android studio code example

Example 1: android studio set background color

YourView.setBackgroundColor(Color.argb(255, 255, 255, 255));

Example 2: 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);

Tags:

Java Example