我在drawable中有一个xml文件,为imageview设置边框,如下所示imgborder.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke android:width="1dp" android:color="#000000" />
<padding android:left="1dp" android:top="1dp" android:right="1dp"
android:bottom="1dp" />
</shape>
我可以知道如何在代码中动态应用它?像android:xml布局中的背景?
谢谢。
答案 0 :(得分:3)
您可以执行以下操作:
ImageView v = new ImageView(this);
v.setBackgroundResource(R.drawable.btn_default);
如果你有一个Drawable对象而不是drawable的资源id,你也可以使用v.setBackgroundDrawable。