Call notifyDataSetChanged() on adapter in drag and drop

This commit is contained in:
Joshua Bahnsen 2014-01-28 16:01:58 -07:00
parent ca0d90a153
commit b3875e7863

View File

@ -1226,9 +1226,9 @@ public class DownloadActivity extends SubsonicTabActivity implements OnGestureLi
{ {
DownloadFile item = adapter.getItem(from); DownloadFile item = adapter.getItem(from);
adapter.remove(item); adapter.remove(item);
adapter.notifyDataSetChanged();
adapter.insert(item, to); adapter.insert(item, to);
//onDownloadListChanged(); adapter.notifyDataSetChanged();
//onCurrentChanged();
} }
} }
@ -1257,6 +1257,7 @@ public class DownloadActivity extends SubsonicTabActivity implements OnGestureLi
} }
adapter.remove(item); adapter.remove(item);
adapter.notifyDataSetChanged();
String songRemoved = String.format(getResources().getString(R.string.download_song_removed), item.getSong().getTitle()); String songRemoved = String.format(getResources().getString(R.string.download_song_removed), item.getSong().getTitle());