设置ImageView为全屏显示
ImageView默认会适应屏幕大小, 假设想使用全屏填充, 则须要使用:
android:scaleType="fitXY"
android:scaleType="matrix"
注意android:scaleType的參数选择.
总体界面:
<ImageView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:scaleType="fitXY"
android:src="@drawable/healthvideo_background_xxx"/>