I did get the drag and drop working and the TouchListView class works great. However in my case I have rows of various height due to my adapter which contains an EditText that can have multiple lines. Therefore after I drop, all my rows convert to the tlv:normal_height which in my case is 74dip. This causes many rows to cut off all my text in the EditTexts. I tried re initializing my adapter (mylistview.setAdapter= myadapter), setting the ListView to GONE then VISIBLE and invalidateViews() but nothing seems to reset the ListView back to before I dragged, short of leaving the activity and coming back. What can be done here? -Thx
tlv:normal_height="74dip"
tlv:expanded_height="128dip"
There's little question that the original AOSP code was designed for uniform row heights, and the whole
expanded_height
construct was there to provide space for the user to visualize where the drop would occur.One starting point would probably be to create a
TouchListAdapter
mixin interface (akin toSpinnerAdapter
) where thenormal_height
andexpanded_height
would be retrieved dynamically from the adapter based onposition
as opposed to being fixed values declared in the layout. Whether that alone would be sufficient or more work would need to be done, I can't say.If you come up with a solution, patches are welcome. Otherwise, I'll probably take a look at this sometime, but not very soon.
My apologies for not having a near-term silver bullet.