android中ImageView、ImageButton、Button之间的区别
1.继承不同:
java.lang.Object ↳ android.view.View ↳android.widget.ImageView ↳ android.widget.ImageButton
java.lang.Object ↳ android.view.View ↳ android.widget.TextView ↳android.widget.Button
因而ImageButton 不支持setText,而Button支持。
反之,ImageButton 支持setImageURI,而Button不支持。
Button和ImageButton有Button的状态,但是ImageView没有。
imageView 加上可点击的属性同样实现button的点击功能。