android 图片全屏

方式一:

在xml的布局文件的根元素设置属性background

方式二:

<ImageView 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="fitXY"
        android:src="@drawable/img" />

原文地址:https://www.cnblogs.com/ArRan/p/3610954.html