Skip to content Skip to sidebar Skip to footer

Gridview Is Not Scrolling Smoothly

I have 100 plus images present in drawable folder I am creating gallery in GridView, But facing scrolling issues. gridView is not scrolling smoothly although I have used ViewHolder

Solution 1:

Try using image lazzy loader like:

https://github.com/nostra13/Android-Universal-Image-Loader

Solution 2:

Change your getItem as below:

@OverridepublicObjectgetItem(int position) {

    return names[position];
}

Post a Comment for "Gridview Is Not Scrolling Smoothly"