Drag list list to another listview list

enter image description here

As shown in the screenshot, I have a list of folders and related albums. I used the extended list for this list. I have another list that shows images. When I click on any album, the second list displays images of that particular album.

Now I want to move the image from an existing ablum to another album. And I want to drag the desired image into another album to perform this function.

I would like to receive your suggestions for solving this problem.

+7
android android-listview listview drag-and-drop expandablelistview
source share
1 answer

@Mehul I think you can use a simple drag and drop link and the link provided by google, and in the "Drag and Drop" mode you can add a path to view the image in the desired album and remove it from the current album and update your adapter and list. If you need a weaker animation, you can try the ObjectAnimator class instead of dragging and dropping.

0
source share

All Articles