drag-sort-listview icon indicating copy to clipboard operation
drag-sort-listview copied to clipboard

Android ListView with drag and drop reordering.

Results 67 drag-sort-listview issues
Sort by recently updated
recently updated
newest added

I am using a custom listview having some circular images and texts, When I drag the listItem, it resize itself, and cut the curvs of the boundaries, when I place...

When i drag the drag-sort-listview ,it will IndexOutOfBoundsException at adapter.insert(item,to),the detail is below: 1:DragSortListView mListView=(DragSortListView)findViewById(R.id.dragsortlistview); 2:mListView.setDropListener(onDrop); 3:private DragSortListView.DropListener onDrop = new DragSortListView.DropListener() { @Override public void drop(int from, int to)...

I'm using drag-sort-listview to sort rows of my ListView, and I have created a demo using this library, but it is not working. When I try to drag rows it...

I want to have an animation that scales up the row that is being re-ordered. I placed this code inside startDrag(int, int, int, int) but it is only getting hit...

I can't get the fling feature to work. here is my xml code: ``` ``` in the java code i don't do anything triky, i just have an ArrayAdapter for...

Trying to build the projects with maven v. 3.22 results in an error. The maven-android plugin must be updated to 3.8.0 and a sdk platform must be specified as such:...

Thank you for your hard working. When I build use maven, failed with the android-maven plugin. I use the android-maven-plugin-3.9.0-rc.1, it works. My environment: ``` ninja@ninja ~/src/drag-sort-listview $ mvn -v...

Hi there, I'm running into the following crash. Anyone else seeing this? Do I need to check that v.getDrawingCache == null? Thanks, ``` java.lang.NullPointerException at android.graphics.Bitmap.createBitmap(Bitmap.java:523) at com.mobeta.android.dslv.SimpleFloatViewManager.onCreateFloatView(SimpleFloatViewManager.java:53) at com.mobeta.android.dslv.DragSortListView.startDrag(DragSortListView.java:2218)...

Attempt at fixing the crash when dragging listview items and exiting the view at the same time. It is suspected that some other component is stealing touch events, preventing the...