如何以编程方式从字符串设置布局背景色调?

问题描述 投票:4回答:3

我试过这段代码:

LinearLayout someLayout=(LinearLayout)view.findViewById(R.id.someLayout);
        someLayout.setBackgroundTintList(context.getResources().getColorStateList(Color.parseColor("#ff8800")));

但我收到一个错误:android.content.res.Resources$NotFoundException我从外部源获取颜色十六进制,所以我无法将其嵌入colors.xml中。另外我想改变色调,而不是背景,所以setBackground不是一个选项。

android layout colors hex android-linearlayout
3个回答
8
投票

我想我不能使用getColorStateList()所以我搜索了另一种方法来做到这一点。最后,我可以使用以下代码设置颜色色调:

LinearLayout someLayout=(LinearLayout)view.findViewById(R.id.someLayout);
        someLayout.getBackground().setColorFilter(Color.parseColor("#ff8800"), PorterDuff.Mode.SRC_ATOP);

这就好像我更改了xml文件中的backgroundTint属性,因此它非常适合我的问题。


0
投票

我能够使用以下行管理。根据你的情况改变它。

myView.getBackground().setTint(currentView.getResources().getColor(R.color.colorAccent));

-1
投票

你不能这样做,因为getColorStateList方法期望资源的int id,并且你传递RGB颜色int。您应该在此link之后创建颜色状态列表

然后像这样设置:

.getColorStateList(R.color.your_xml_name)
© www.soinside.com 2019 - 2024. All rights reserved.