Ok, here's the deal. I want to move items in my extended gallery class to change the order of images. The way i'm doing it now:
- on long press remove the current selected item,
- use
onDraw()
to draw the same image so i can move it around usingonTouchEvent()
- on release add the item again
This works fine but the problem is that when using the onDraw()
method it will draw the image behind the gallery items. Is there a way to change the priority of what is drawn?