Android: Changing Background-Color of the Activity (Main View)

Try creating a method in your Activity something like…

public void setActivityBackgroundColor(int color) {
    View view = this.getWindow().getDecorView();
    view.setBackgroundColor(color);
}

Then call it from your OnClickListener passing in whatever colour you want.

Leave a Comment