What is Native crash at /system/lib/libc.so?
I am getting crash while scrolling down and up a listview from my app but the error is not quite understandable. I am attaching the bug report screenshot from Google Developer Console. Please go through it. Adapter getView Code: public View getView(final int position, View convertView, ViewGroup parent) { ViewHolder holder = null; if (convertView == null) { holder = new ViewHolder(); convertView = mInflater.inflate(R.layout.adapter_item_list, parent, false); holder.labelName = (TextView) convertView .findViewById(R.id.item_label); holder.labelInfo = (TextView) convertView .findViewById(R.id