我的问题是我的ScrollView非常缓慢且缓慢.
每次滚动时,我都会收到以下警告:
Skipped 146 frames! The application may be doing too much work on its main thread.
这是我的XML文件:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/c1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/course1" />
<TextView
android:id="@+id/c1text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/c1"
android:gravity="center"
android:text="BlaBla1"
android:textSize="20sp"
android:textStyle="bold" />
<ImageView [...] />
<TextView [...] />
[more ImageViews and TextViews]
</RelativeLayout>
有哪些解决方案可以优化图像的加载?
解决方法:
最明显的解决方案是使用Android预期的ListView.
使用ListView的原因是它可以回收其显示,从而保持最小的内存占用.与ViewHolder pattern甚至Picasso或Glide库一起使用,它可以轻松地进行预加载和缓存,并为您提供更好的性能.
不幸的是,唯一的选择是在后台手动预加载图像,但是这会消耗内存,并可能导致应用程序关闭.