I\'m working on a gamebook application that shows 12 views in a ViewPager. This is my custom PagerAdapter :
private class ImagePagerAdapter extends PagerAdap
I solved! All your hints were good but the real problem was the "/drawable" folder! I had all the pictures in "/drawable" generic folder that is considered by the system like "/drawable/mdpi", so when I were running in devices with hdpi or more the images were resized, and became too big which cause OutOfMemoryException!
Now i'm using "/drawable-nodpi" to store my images. This folder works like "/drawable" but the images are never resized!