【发布时间】:2012-02-27 23:07:53
【问题描述】:
可能重复:
What is the difference between src and background of ImageView
android:background 和 android:src 有什么区别?他们的工作方式一样吗?
【问题讨论】:
可能重复:
What is the difference between src and background of ImageView
android:background 和 android:src 有什么区别?他们的工作方式一样吗?
【问题讨论】:
android:background 存在于所有视图中。顾名思义,这就是背景中的内容。
android:src 存在于 ImageViews 及其子类中。您可以将其视为前景。因为ImageView 是View 的子类,所以你甚至可以使用android:background。
【讨论】:
您可以在所有视图中使用背景.. 但是您只能将 SRC 用于 ImageView 和 ImageButton.....
【讨论】:
一个设置背景,一个设置图像。您可以同时使用这两种方法为图像设置背景。
【讨论】: