[Solved] My list view is lagging can anyone help me to fix this?

if you still happy with ListView then you can take idea from below code here i am using Cursor but you can use ArrayList in place of Cursor public class Custom_Adapter_Products extends BaseAdapter { Context context; Cursor mCursor; static int[] intArr; DatabaseAdapter db; public ImageLoader imageLoader; public Custom_Adapter_Products(Context context, Cursor mCursor){ this.context = context; this.mCursor … Read more