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
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
Iftikar Urrhman Khan from http://stackoverflow.com/questions/16642924

New Comments