I must create an android app that load images from sqlite db and show in the tablet screen.
I would realize the drag and drop so you can insert, delete and move all the images into your screen simulating the desktop computer screen :)
So, i know that there is a drag and drop class but this works with at least API level 11.
My question is: there is some example, tutorial or someone can explain me how i can realize the drag and drop with android API level 8?
Thanks in advance.
Marco.
|
|
|||
|
|
|
You can do it by implementing OnTouchListener and overriding public boolean onTouch(View view, MotionEvent me) check this link http://techdroid.kbeanie.com/2010/04/simple-drag-n-drop-on-android.html or you can use http://developer.android.com/guide/topics/ui/drag-drop.html requires API 11 :( |
|||
|
|
There was a similar question on Stack Overflow related to drag-drop. I provided links to some tutorials I wrote that work with API 8 and above. See Dragging and Dropping a button from one Linear Layout to another Linear Layout. |
|||
|
|
|
How to implement Drag and Drop in android 2.2? There is my DragDropManager.class you could see that is possible. In this lib you can drag anythink because it make visual copy of object so you see what you draging. Also i use floating object PopupWindow so you cang drag thing right where they are without changing your layouts.
|
|||
|