Android布局背景颜色更改

发布于 2024-12-04 07:38:58 字数 1270 浏览 1 评论 0原文

我在谷歌上进行了相当多的搜索,也在这个网站上进行了广泛的搜索,如果我错过了回答我的问题,我很抱歉。但事情是这样的:

            public void onClick(View v){
            Button btt= (Button) findViewById(R.id.bttROnOff);
            LinearLayout ll = (LinearLayout) findViewById(R.id.layScreen);
            if ((btt.getText()).toString().compareToIgnoreCase("Reading Mode OFF")==0) {
                ll.setBackgroundColor(R.color.paleYellow);
                WindowManager.LayoutParams lp = getWindow().getAttributes();
                lp.screenBrightness = originalBrightness;
                getWindow().setAttributes(lp); 
                btt.setText("Reading Mode ON");
            }
            else {
                ll.setBackgroundColor(Color.WHITE);
                WindowManager.LayoutParams lp = getWindow().getAttributes();
                lp.screenBrightness = 1;
                getWindow().setAttributes(lp); 
                btt.setText("Reading Mode OFF");
            }
            }

我有一个按钮可以将背景颜色更改为白色,然后更改为 strings.xml 文件中定义的“paleYellow”。在我的 xml 布局文件中,它以这种颜色开始,当我按下按钮时,它会变为白色。但如果我按下按钮返回到上一个,我得到的是黑色背景。如果我使用:

ll.setBackgroundColor(Color.Yellow);

它有效,但是:

ll.setBackgroundColor(R.color.paleYellow);

不:S

I've search quite a bit in google and extensively in this site also, if I missed the question that answer mine I'm sorry. But here it goes:

            public void onClick(View v){
            Button btt= (Button) findViewById(R.id.bttROnOff);
            LinearLayout ll = (LinearLayout) findViewById(R.id.layScreen);
            if ((btt.getText()).toString().compareToIgnoreCase("Reading Mode OFF")==0) {
                ll.setBackgroundColor(R.color.paleYellow);
                WindowManager.LayoutParams lp = getWindow().getAttributes();
                lp.screenBrightness = originalBrightness;
                getWindow().setAttributes(lp); 
                btt.setText("Reading Mode ON");
            }
            else {
                ll.setBackgroundColor(Color.WHITE);
                WindowManager.LayoutParams lp = getWindow().getAttributes();
                lp.screenBrightness = 1;
                getWindow().setAttributes(lp); 
                btt.setText("Reading Mode OFF");
            }
            }

I have a button to change the background color to white and then to "paleYellow" which is defined in the strings.xml file. In my xml layout file, it starts with this color and when I press the button it changes to white. But if I press the button to return to the previous one, what I get is a black background. If I use instead:

ll.setBackgroundColor(Color.Yellow);

It works, but:

ll.setBackgroundColor(R.color.paleYellow);

Does not :S

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

能否归途做我良人 2024-12-11 07:38:58

setBackgroundColor 采用一个 int 来表示 sRGB 中的颜色,而 R.color.paleYellow 是颜色的 id,但不是相同的表示形式。要使用它,您应该调用 setBackgroundResource(R .color.paleYellow)

setBackgroundColor takes an int that represent a color in sRGB, while R.color.paleYellow is an id of color, but not in the same representation. to use it, you should call setBackgroundResource(R.color.paleYellow)

再浓的妆也掩不了殇 2024-12-11 07:38:58

你有没有尝试过类似...

Resources myRes = getResources();
int colorPaleYellow = myRes.getColor(R.color.paleYellow);
setBackgroundColor(colorPaleYellow);

或者类似...的东西

setBackgroundcolor(this.getColor(R.color.paleYellow));

Have you tried something like...

Resources myRes = getResources();
int colorPaleYellow = myRes.getColor(R.color.paleYellow);
setBackgroundColor(colorPaleYellow);

or maybe something like...

setBackgroundcolor(this.getColor(R.color.paleYellow));
待天淡蓝洁白时 2024-12-11 07:38:58

这应该可以做到:

ll.setBackgroundColor(getResources().getColor(R.color.paleYellow));

this should do it:

ll.setBackgroundColor(getResources().getColor(R.color.paleYellow));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文