Android加载长图之Scrollview嵌套ImageVie

2017-10-18  本文已影响0人  Robert_Wangyy

先上图:


Screenshot_2017-10-18-16-12-51.png

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"

上一篇 下一篇

猜你喜欢

热点阅读