4

我有一个shape输入,我的目标是在运行时以编程layer-list方式更改颜色。shape我有十六进制代码的字符串,我曾经Color.parseColor()解析它并传递给 setColor 方法。每当我运行应用程序时,它显示的颜色与我预期的不同。

这是我的 XML 文件代码:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >


<item 
    android:id="@+id/lvbg"
    android:top="1dp">
    <shape
        android:id="@+id/listview_background"
        android:shape="rectangle" >
        <size
            android:height="220dp"
            android:width="600dp" >
        </size>

        <solid android:color="@android:color/black"></solid>

        <corners android:radius="15dp" />
    </shape>
</item>
</layer-list>

这是我的代码CustomAdapter

convertView = mInflater.inflate(R.layout.student_info_selection_fragment_icon, null);
holder = new ViewHolder();
holder.collegeBG=(LayerDrawable)convertView.getResources().getDrawable(R.drawable.rectangle);
holder.bg = (GradientDrawable)holder.collegeBG.findDrawableByLayerId(R.id.lvbg);
String color = "#FF" + rowItem.getCollegeColor();
holder.bg.setColor(Color.parseColor(color));

例如,当我放入时,#FF1D0A63我得到黑色或棕色,完全不同的颜色。谢谢

4

2 回答 2

3

我仍然不知道问题是什么,但我意识到当我layer-list在 xml 中使用并将其作为背景分配给视图并尝试更改 a 的颜色时shapelayer-list我遇到了这个问题。

所以我解决了将我的背景shapelayer-list.

我把我的背景shape放到另一个文件中:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/listview_background"
    android:shape="rectangle" >

    <size
        android:height="220dp"
        android:width="600dp" >
    </size>
    <solid android:color="@android:color/black" > </solid>
    <corners android:radius="15dp" />

</shape>

我将它作为背景分配给TextView.

我使用的原因layer-list是组合 2-3 个形状并使它们渐变并给它们圆角。相反,我使用ViewTextView为它​​们分配了形状作为背景,它起作用了。

这是我的新的CustomAdapter

convertView = mInflater.inflate(R.layout.student_info_selection_fragment_icon, null);
holder = new ViewHolder();
holder.tvBackground = (TextView) convertView.findViewById(R.id.tvSelectionCollegeBackground);
GradientDrawable background = (GradientDrawable) holder.tvBackground.getBackground();


String color = "#FF" + rowItem.getCollegeColor();
background.setColor(Color.parseColor(color));
holder.tvBackground.setBackground(background);
于 2013-06-07T14:41:01.613 回答
2

试试这个代码...

GradientDrawable gd = new GradientDrawable();
gd.setShape(GradientDrawable.RECTANGLE);
gd.setStroke(3, Color.BLUE);
gd.setSize(w, h);
gd.setColors(new int[]{
   Color.RED,
   Color.GREEN,
   Color.YELLOW,
   Color.CYAN
});
gd.setGradientType(GradientDrawable.LINEAR_GRADIENT);
于 2017-11-21T07:09:34.550 回答