Loading large images the resizing them by the system either throws OOM error or make the scrolling too slow.
To fix that move the images (tea images) to a new folder named drawable-nodpi instead of locating them inside drawable, in this case the images will be loaded with the same original size without resizing them to go along with device's density.
Loading large images the resizing them by the system either throws OOM error or make the scrolling too slow.
To fix that move the images (tea images) to a new folder named
drawable-nodpi
instead of locating them insidedrawable
, in this case the images will be loaded with the same original size without resizing them to go along with device's density.