OnDragListener - is there a compatibility library for Android levels <11?

I have an application that uses OnDragListener .

Since this was only introduced in API Level 11, I am looking for a library (similar to ActionBarSherlock for Fragments) that supports this functionality for lower levels.

Is there anything similar that might help make the app more compatible with Adnroid 11 versions?

+6
source share
1 answer

... the easiest solution I've found is to implement two-way connection logic. So click on the destination, and then select the target and vice versa - I could even use a lot of drag and drop code, just without dragging myself ...

0
source

Source: https://habr.com/ru/post/927704/


All Articles