5

现在问题从设置形状的颜色开始。我在其中创建了一个矩形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中经历了几个例子,但我无法将其更改为图像视图。请帮助!!!!提前致谢。

编辑:

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

4

6 回答 6

10

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

在我的布局中我改变了android:src="" to android:background="@drawable/case_priority" 并且在我的java文件中我n=包含了这个代码:->

        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);

就是这样。希望有人会。

于 2012-05-22T09:43:25.187 回答
3

将此添加到图像视图

android:background="#152" // or some other color code

编辑1: 用代码做到这一点

ImageView.setBackgroundColor(Color.parseColor("red")); // Or any color code like #000 , #987

编辑2:

ImageView Imgs = (ImageView) findViewById(R.id.iv_priority);

Imgs.setBackgroundColor(Color.parseColor("ColorCode"));
于 2012-05-16T12:14:41.343 回答
3

看看这里

http://developer.android.com/guide/topics/graphics/2d-graphics.html#shape-drawable

Shape如果您愿意,您可以使用它inflate来扩充您的 XML,而不是创建in 代码。

于 2012-05-16T12:19:18.617 回答
2

IimageView.setBackgroundColor("#152");

于 2012-05-16T12:20:54.657 回答
1

所有解决方案都建议使用 ImageView 的背景。我认为这不是理想的解决方案。这个问题已经反映了一种直观的方法是什么:将形状应用于src属性。为了以编程方式更改形状的颜色,您将执行以下操作:

GradientDrawable drawable = (GradientDrawable) priorityImageView.getDrawable();
drawable.setColor(Color.RED);

鉴于形状是按照原始问题分配的:

<ImageView 
    android:id="@+id/iv_priority"
    android:src="@drawable/case_priority"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/>

这也带来了好处,您可以将 ImageView 的背景与其内容分开设置。

于 2013-12-10T13:30:41.110 回答
0

作为Lars Blumberg 的回答,我也不想更改背景,因此我将以下代码应用于我的图像,因为我没有 GradientDrawable:

Drawable drawable = imageView.getDrawable();
drawable.setColorFilter(Color.CYAN, PorterDuff.Mode.MULTIPLY);
于 2016-03-21T12:10:57.020 回答