ImageView动态xml drawable

时间:2016-04-15 12:39:58

标签: android imageview xml-drawable

我有一个具有以下可绘制集的ImageView:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/default_image_round" />
    <item>
        <shape android:shape="rectangle" android:padding="13dp">
            <corners
                android:bottomRightRadius="5dp"
                android:bottomLeftRadius="5dp"
                android:topLeftRadius="5dp"
                android:topRightRadius="5dp"/>
        </shape>
    </item>
</layer-list>

我想将android:drawable从上面的xml更改为其他图像。

我试试:

Picasso.with(mContext).load(f).resize(mNewCarRound.getWidth(),mNewCarRound.getHeight()).centerCrop().into(mNewCarRound); 

但它覆盖了上面的xml并放了我的图片

有没有办法可以设置ID

0 个答案:

没有答案