0

我有ListViewAdapter,每个项目都是RelativeLayout。我希望每个项目都有不同的圆形图像,但我不知道如何更改图像。

我的可绘制 xml 如下所示:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:id="@+id/item2">
        <shape android:shape="rectangle" >
            <solid android:color="#FFFFFF"/>
            <corners  android:radius="5dip" />
            <stroke android:width="2dp" android:color="#000000" />
        </shape>
    </item>

 <item android:id="@+id/item">
    <bitmap android:src="@drawable/ic_launcher"/>
 </item>

</layer-list>

我的代码如下所示:

LayerDrawable ld = (LayerDrawable)m_context.getResources().getDrawable(R.drawable.rounded_border);
    ld.setDrawableByLayerId(R.id.item2,GetDrawableFromUrl(prod.getImageUrl()));
    RelativeLayout raw = (RelativeLayout)rowView.findViewById(R.id.raw);
    raw.setBackgroundDrawable(ld);

但结果是图像没有圆边和笔触。

如何在不损坏圆边和笔划的情况下更改图像?

谢谢

4

1 回答 1

0

如果要将圆形矩形图像设置为列表中每个项目的背景。看看这个

于 2013-02-24T13:27:24.377 回答