我经历了很多线程,但我还没有得到答案。
我以编程方式将图像设置为 imageView
imageview.setBackgroundResource(R.Drawable.image);
如果我将图像设置为上述,如果我给出,图像会被清除吗?
imageview.setImageDrawable(null);
什么imageview.setBackgroundDrawable(null)
意思?
和有什么区别
imageview.setImageDrawable(null);
和
imageview.setImageBitmap(null);
和
imageview.setBackgroundDrawable(null);