0
votes
0answers
77 views

Moving imageview between views

I am trying to move an imageview that is inside a tablerow that is inside a horizontalscrollview. Everything is wrapped by a relativelayout. During run time, I load the tablerow with images. I am ...
0
votes
1answer
73 views

Set latency for OnTouchListener when using it for drag and drop actions

I Have a project with table rows that can be moved to other Tables via Drag and Drop. I want these Rows to be highlightable as well, I set focusable and focusableontouchmode to true and the background ...
0
votes
0answers
161 views

Android drag and drop + setMargins function does not work in FrameLayout on mobile phone

I have an android application, it use FrameLayout with 6 ImageViews. I use simple drag and drop script to move with images. Everything is ok on tablets 10" 1024x800 screen (also on tablet 7"), but ...
0
votes
1answer
92 views

How to set two onTouchListener to two buttons in the same layout

I am trying to make drag and drop buttons, they are located in the same xml and I created two onTouchListener for them, they can be drag and dropped, but if I move one of them, the other also moves, ...
0
votes
1answer
221 views

Android: Different Drag and Drop Actions onLongClick and onTouch

I want to implement two different Drag and Drop interactions with one Button. If the user clicks long on the Button, he can move the button. This is no Problem, I implemented OnLongClickListener: ...
0
votes
0answers
92 views

OnTouchEvent stops firing when leaving parent, how change this behaviour?

I want to implement drag-and-drop in an android application to switch a child view from one custom view to another custom view (of the same type). My problem is that the OnTouchEvent stops firing ...
0
votes
2answers
453 views

cannot drag custom imageview using ontouchlistener

i'm new to android programming... i'm trying to move a newly created imageview that is added to layout using gesture(specifically, ontouchlistener).. it managed to add the imageview, but the ...
1
vote
3answers
2k views

ACTION_UP doesn't work

I'm trying to do an app which user can move image... And when the user move it to a certain place, app should do something else... Kinda unlocking... But the problem is when ACTION_UP statement ...
1
vote
1answer
639 views

Scrollview and touch listener

I am facing a problem. I have a ScrollView in my application and I have to drag and drop a TextView with the help of a touch listener. The problem is when I drag a TextView using the ...
0
votes
1answer
898 views

Android: tearing effect while calling requestLayout() in OnTouchListener methods? a way to fix?

I've tried adding some Drag&Drop mechanism to my project. the way I'm doing it is basically making two operations each time a touch event occurs: first, updating the parameters I'm using inside ...
6
votes
5answers
8k views

Drag and drop images in android

I m working on a word scramble game which allows user to move the image to image..if the image doesn't match then it should come back to it's original position from where it was dragged.I have written ...
1
vote
2answers
1k views

How to implement drag'n'drop app in Android

I want to write an app for my thesis that it will have some items/icons and i will drag'n'drop them in a box and then it will make a query in a database and return the result..but i can't find ...