How to get rid of lag/jitter in listview? Can anybody help me with my code on how to cache it?

May 20, 2013 in answer

0 votes, 0.00 avg. rating (0% score)

ANSWER:

as per your code you are inftaling row every time getview called,and you are also checking view for null

View row=null;
if(convertView==null)

    row = mInflater.inflate(R.layout.listrow, parent, false);

you also have to use holder pattern for smooth scrolling

link

Iftikar Urrhman Khan from http://stackoverflow.com/questions/16642924