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

后端 未结 7 869
悲哀的现实
悲哀的现实 2020-11-30 04:24

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.         


        
7条回答
  •  春和景丽
    2020-11-30 04:48

    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.

提交回复
热议问题