Android加载长图之Scrollview嵌套ImageView

先上图:


Android加载长图之Scrollview嵌套ImageView_第1张图片
Screenshot_2017-10-18-16-12-51.png

1.布局文件(关键代码)
android:layout_width="match_parent"
android:layout_height="match_parent"
>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/dplan_pic"
android:scaleType="fitXY"
android:adjustViewBounds="true"
/>

这样已经可以显示并滑动了,但是(一个巨型草泥马奔袭而来),什么情况,滑动的时候一卡一卡的。

解决办法:
在AndroidManifest.xml中为该布局所在的Activity加上下面这句代码就好了。
android:hardwareAccelerated="false"

你可能感兴趣的:(Android加载长图之Scrollview嵌套ImageView)