我有一个问题,我的滚动视图非常慢和滞后。
我每次滚动都会收到以下警告:

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 patternPicassoGlide库,它可以轻松地进行预加载和缓存,并为您提供更好的性能。
不幸的是,唯一的选择是在后台手动预加载图像,但是这会消耗内存,并可能使您的应用程序关闭。

10-06 03:38