设置ImageView为全屏显示
本文地址: http://blog.csdn.net/caroline_wendy
本文的合集已经编著成书,《高级Android开发强化实战》,欢迎各位读友的建议和指导。
在京东即可购买:https://item.jd.com/12385680.html
ImageView默认会适应屏幕大小, 如果想使用全屏填充, 则需要使用:
android:scaleType="fitXY"
android:scaleType="matrix"
注意android:scaleType的参数选择.
参考: http://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType
整体界面:
<ImageView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:scaleType="fitXY"
android:src="@drawable/healthvideo_background_xxx"/>