What is the difference between ImageView.setBackgroundResource and ImageView.setImageResource?

后端 未结 4 1308
故里飘歌
故里飘歌 2020-12-05 14:10

I have seen these different approaches in setting images but I don\'t get the difference.

Why there two methods?

4条回答
  •  旧时难觅i
    2020-12-05 14:56

    setBackgroundResource sets the background image of an ImageView. The XML attribute is: android:background

    setImageResource sets the image displayed in an ImageView. The XML attribute is: android:src

提交回复
热议问题