我有ListViewAdapter,每个项目都是RelativeLayout。 我希望每个项目都有不同的圆形图像,但我无法弄清楚如何更改图像。
我的drawable 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);
但结果是没有圆边和笔划的图像。
如何在不损坏圆角和笔划的情况下更改图像?
由于