单个滚动视图中的多个图像滞后

时间:2014-02-12 23:05:08

标签: android image imageview richtextbox lag

我正在创建混合文本和图像输入的活动。 这是容器的xml。

<ScrollView
    android:id="@+id/new_question_body_scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/new_question_tag_container"
    android:layout_above="@+id/oler_keyboard_accessory"
    android:layout_alignLeft="@+id/new_question_tag_container"
    android:layout_alignRight="@+id/new_question_tag_container"
    android:scrollbars="none">

    <LinearLayout
        android:id="@+id/new_question_body_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <EditText
            android:id="@+id/new_question_body_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@null"
            android:hint="Please edit your body here."
            android:layout_marginBottom="5dp"/>

    </LinearLayout>
</ScrollView>

在动态添加三个(不是两个滞后)的imageViews后,滚动时会变得相当滞后。 即使我为每个50dp制作maxHeight和Width,滞后仍然存在。我是以错误的方式添加imageView还是这是内存限制?

1 个答案:

答案 0 :(得分:2)

使用带有自定义布局的ListView(对于每一行)而不是混合使用ScrollView和LinearLayout会不会更好?

如果您想添加大量图片(就像图库一样),您可以考虑使用LRUCache或其他算法(即延迟加载)。

另外,请考虑要加载到内存中的图像大小。也许更小的尺寸和每个项目的“点击放大”应该是更好的方法/ UX