horizontal listview for images

124 views Asked by At

I need to show images in horizontally.I try to use Horizontal Scroll viewer.But the when number of images are high it gives me OutofMemory error as it doesn't hadle the loading images automatically it trys to load all images to memory.So is there a Horizontal list view in Android ?

1

There are 1 answers

0
inni On BEST ANSWER

Add entry in Manifest.xml , application tag -> android:largeHeap="true"

eg:
    <application
            android:name="APP_NAME"
            ..
            android:largeHeap="true"
             ..> </application>