Android 图像的水平列表视图

Android 图像的水平列表视图,android,horizontallist,Android,Horizontallist,我需要以水平方式显示图像。我尝试使用水平滚动查看器。但当图像数量较多时,它会给我OutofMemory错误,因为它不会自动加载图像,它会尝试将所有图像加载到内存中。Android中是否有水平列表视图?在Manifest.xml中添加条目,应用程序标签->android:largeHeap=“true” 例如: 最好使用查看寻呼机并在使用后回收位图…如何在使用后回收位图 eg: <application android:name="APP_NAME"

我需要以水平方式显示图像。我尝试使用水平滚动查看器。但当图像数量较多时,它会给我OutofMemory错误,因为它不会自动加载图像,它会尝试将所有图像加载到内存中。Android中是否有水平列表视图?

在Manifest.xml中添加条目,应用程序标签->android:largeHeap=“true”

例如:

最好使用查看寻呼机并在使用后回收位图…如何在使用后回收位图
eg:
    <application
            android:name="APP_NAME"
            ..
            android:largeHeap="true"
             ..> </application>