我的自定义列表视图项中有一个按钮,我正在使用以下可绘制的xml文件:
rounded_corner.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="120dp" android:layout_height="100dp">
<stroke
android:width="1dp"
android:color="#FFFFFF" />
<solid android:color="#002832" />
<padding
android:left="1dp"
android:right="1dp"
android:top="1dp" />
<corners android:radius="5dp" />
</shape>
我使用了“#002832”颜色作为drawable。现在,我想以编程方式更改可绘制文件的颜色。我怎么能这样做?
请在没有理解问题的情况下停止标记为重复。
我已经检查了@Ganesh Pokele SO链接anf,它完全不同。
我查了@bizzard提供的链接但无法解决我的问题。
答案 0 :(得分:7)
我在this post中详细描述了您想要的内容,如果我理解您的问题,您可能需要查看一下。
基本上,你应该做的是用另一种颜色创建另一个 drawable,并通过你的View.setBackground(Drawable drawable)以编程方式设置它:
<强> another_round_corner.xml 强>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="120dp" android:layout_height="100dp">
<stroke
android:width="1dp"
android:color="#002832" />
<solid android:color="#002832" />
<padding
android:left="1dp"
android:right="1dp"
android:top="1dp" />
<corners android:radius="5dp" />
</shape>
然后随时将背景设置为此drawable。
修改强>
由于OP不想使用另一个drawable,解决方案是使用这样的滤色器:
button.getBackground().setColorFilter(Color.rgb(40, 50, 60), PorterDuff.Mode.SRC_ATOP);
您将获得所需的效果。 PorterDuff.Mode.SRC_ATOP
将在背景上应用您想要的颜色,在另一种颜色的顶部,而不会混合它们。您必须在第一个参数中传递颜色(颜色将来自服务器)。如果它是十六进制的,只需将其转换为RGB,例如,或做任何你需要的转换。
您可以随时以编程方式更改可绘制颜色,让我知道它是否适合您。
让我知道它是否对你有帮助,并且如果有的话,请选择正确的答案,欢呼。
答案 1 :(得分:0)
解决方案
这是我的 xml rectangle_border
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@color/gray"
<corners android:topLeftRadius="5dp" android:bottomLeftRadius="5dp"
android:topRightRadius="5dp" android:bottomRightRadius="5dp"/>
<stroke android:color="@color/colorPrimary" android:width="1dp" />
</shape>
Drawable unwrappedDrawable = AppCompatResources.getDrawable(context, R.drawable.rectangle_border);
Drawable wrappedDrawable = DrawableCompat.wrap(unwrappedDrawable);
DrawableCompat.setTint(wrappedDrawable, Color.parseColor(textcolor));
//Here set the background in view
holder.textrectangle_bgLL.setBackgroundResource(R.drawable.rectangle_border);