先上图:
1.布局文件(关键代码)
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/dplan_pic"
android:scaleType="fitXY"
android:adjustViewBounds="true"
/>
</ScrollView>
这样已经可以显示并滑动了,但是(一个巨型草泥马奔袭而来),什么情况,滑动的时候一卡一卡的。
解决办法:
在AndroidManifest.xml中为该布局所在的Activity加上下面这句代码就好了。
android:hardwareAccelerated="false"