[Solved] Checkbox is unchecked whenever listview is scrolled, android?
Your problem is the last for loop. Each row will get the state of the last checked[] array entry. You should see that if you change the value of the last one. PS: Your code is a bit “messy” and can be optimized: @Override public View getView(final int position, View convertView, ViewGroup parent) { View … Read more