gpt4 book ai didi

android - 如何更改 ImageView 中设置的形状的颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:49 26 4
gpt4 key购买 nike

现在问题从设置形状的颜色开始。我在 drawable 中创建了一个矩形形状并将其设置为 ImageView 像这样

<LinearLayout 
android:layout_width="0dp"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="0.15"
android:layout_marginRight="10dp"
android:gravity="center_vertical">
<ImageView
android:id="@+id/iv_priority"
android:src="@drawable/case_priority"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>

编辑

我的case_priority.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#009600" />
<size android:width="30dp"
android:height="30dp" />
</shape>

现在我需要改变这个形状的颜色。实际上这个颜色来自网络服务,我需要改变它。所以我的问题是:我们如何以编程方式更改此形状的颜色。并将其设置为 ImageView 。我已经在 stackoverflow 中浏览了几个示例,但我无法将其更改为 ImageView 。请帮助!!!!提前致谢。

编辑:

可能是我的问题没说清楚,所以只是提炼一下问题。实际上,我有一个 ImageView,我在其中设置了一个实际上是可绘制对象的源。默认情况下,它的绿色如我上面显示的代码所示。现在 web 服务返回需要相应更改的 ImageView 的颜色,所以我不能在运行时从 xml 更改它,所以我需要从 java 文件更改它。由于我使用的是形状和 ImageView ,因此 .setBackground() 在这里帮不上什么忙。那么可能的解决方案是什么。感谢您的回答,对于给您带来的不便,我们深表歉意。

最佳答案

感谢所有的答案。它帮助我得到答案。

在我的布局中,我将 android:src=""更改为 android:background="@drawable/case_priority"在我的 java 文件中,我 n=included 这段代码:->

        Resources res = getResources();
final Drawable drawable = res.getDrawable(R.drawable.case_priority);
drawable.setColorFilter(Color.YELLOW, Mode.SRC_ATOP);
ImageView img = (ImageView)findViewById(R.id.iv_priority);
img.setBackgroundDrawable(drawable);

就是这样。希望它会有人。

关于android - 如何更改 ImageView 中设置的形状的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10618195/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com