29

我的可绘制文件夹中有这个形状:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="5dp" />
    <solid android:color="#ffffff" />
    <stroke android:width="2dp" android:color="#B5B5B5"/>
</shape>

这定义了一个带圆角的矩形,我可以将它作为背景应用到任何面板,如下所示:android:background="@drawable/round_corner_shape"

问题来了:我的应用程序上有几个面板,形状与背景相同,但对于每个形状,我想要不同的边框(笔触)颜色。我不想创建 3 个形状,唯一的区别是笔触颜色。是否可以在运行时更改笔画值?

4

2 回答 2

20

我有同样的问题。就我而言,我有一个 GridView,网格中的项目可以在运行时由用户更改边框颜色。

因此,在该网格的 gridviewAdapter 中,我在 getView 方法(为适配器生成视图的方法)中执行了以下操作

public View getView(int position, View convertView, ViewGroup parent) {
    LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    convertView = inflater.inflate(R.layout.griditem, null);
    GradientDrawable gradientDrawable = (GradientDrawable) convertView.getBackground(); 

    gradientDrawable.setStroke(2, mColor); 
    convertView.invalidate();
    return convertView;
}

mColor 是一个表示颜色的 int,就像我们在 xml 文件中所做的那样。在 java 代码中,我们使用“0x”而不是“#”来以 AARRGGBB 格式定义它。例如,使用 0xFF000000 表示 100% 不透明的黑色,使用 0xFF0000FF 表示 100% 不透明的蓝色。在这里解释这一点,因为谷歌 api '有帮助'告诉 int 颜色是“笔画的颜色”。

这解决了我的问题......我想你可以为你的情况尝试类似的东西。

于 2013-02-23T18:34:33.367 回答
1

嗨,您可以尝试在运行时创建背景,然后您可以随时更改它。

RoundRectShape rect = new RoundRectShape(
  new float[] {30,30, 30,30, 30,30, 30,30},
  null,
  null);
ShapeDrawable bg = new ShapeDrawable(rect);
bg.getPaint().setColor(0x99FFFFFF);
view.setBackgroundDrawable(bg);
于 2012-11-27T13:50:35.780 回答