美文网首页
Android加载长图之Scrollview嵌套ImageVie

Android加载长图之Scrollview嵌套ImageVie

作者: Robert_Wangyy | 来源:发表于2017-10-18 16:19 被阅读0次

先上图:


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"

相关文章

网友评论

      本文标题:Android加载长图之Scrollview嵌套ImageVie

      本文链接:https://www.haomeiwen.com/subject/tileuxtx.html