I want to change the background color of my Main-View (not a Button or a Text-View) just the real background which is usually black... I got this code:
view.
Try creating a method in your Activity something like...
Activity
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.