0
votes
0answers
34 views

Speed and direction of drag and drop

I'm working on a Drag and Drop code, so far it works fine, but I need it to be able to recognize and act based on the speed and direction of the finger swipe (keep moving even if finger is already ...
0
votes
0answers
18 views

Drag and Drop an Item to specific Location

I want drag and drop an specific item to a specific area.which means ii have three items when i drag that item to a specific area.It displays the sub items of that item.i had seen many tutorials but ...
0
votes
0answers
11 views

Android Drag and Drop GridView

I am trying to impement Androids drag and drop on my gridview. I set a dragListener for each view in the grid adapter. It works perfectly when the grid isn't long enough to be scrollable or if it is ...
0
votes
0answers
30 views

android- drag and drop textview and check where is drop

I try to set a few words on the screen and the user should drap them and put each one on specific word on the screen. I found a code which drag and drop button but I have 2 problems: 1. When I change ...
1
vote
1answer
50 views

How can I drag and drop with multiple activities?

I used the Service call to create a Floating Window that floats over all other views/activities. This window has its own Activity and is different from Dialog. Now i want to add a Drag&Drop ...
0
votes
0answers
22 views

drag and drop song name from list to button in android

I am making a DJ app for my own learning purposes. I have two ImageButtons (A and B) which toggle to lit up and unlit using a graphic when you click the onclicklistened. they look like record players ...
0
votes
1answer
40 views

How to Bring layout back to its original position in android after drag

I have working on a project. where I need to drag the layout, I manage to move (drag) the layout but when I release the touch it is not coming at its original position. Please anyone tell me what ...
0
votes
2answers
66 views

Drag and drop in a list view

I have little experience with android. I'm trying to make a drag+drop aware list view because various other solutions don't do what the client wants, and this project is likely going to have me ...
0
votes
0answers
19 views

Retrieving precise drop position of Android View

The target application allows the user to drag/drop views to move them in a FrameLayout or store them in another LinearLayout. The overall mechanism works but I can't get the precision I need on the ...
-1
votes
0answers
49 views

Android Drag And Drop Image One layout to other layouts

I am making app where I am using drag and drop. My problem is that when image doesnt get right location for drag_end application force close or image disappears. private final class ...
0
votes
0answers
47 views

Android drag and drop setlayoutparams does not work on Android 2?

Try to implement drag and drop, move with imageview set layoutparams for imageview in Framelayout (x-axis offset) It seems my layoutparams work does not work on Android 2.x emulator. On Android 4 it ...
0
votes
0answers
43 views

Android Drag Shadow without DragShadowBuilder

I tried to make a drag and drop application with api 8, so I dont have things like startDrag() or dragShadowBuilder. Making the drag and drop with a onTouchListener() isnt a problem, but i also want a ...
0
votes
0answers
21 views

Animation not working as expected after Drag and Drop operation

I am currently working on a chess app, and implemented drag and drop to move the pieces on it. The chess board consists of a grid of 64 chess cells. It's a subclass of relative layout, not a gridview. ...
0
votes
1answer
26 views

Android - How to Check directions of a Object/Image?

I wanted to know how to determine which direction an image or generic object, is moving (right, left, up or down). And as "allow" drag and drop only in a certain direction, thanks ^^
1
vote
0answers
29 views

inter change the images using draging

In my app i want to inter change the images using draging.The follawing is the screen shot of my activity.In this screen 4 images are there.And i want to inter change the total image.For example when ...
-1
votes
1answer
31 views

Implement Drag And Drop in Android [closed]

I am new to Android and i am trying to implement drag and drop feature. I am usingAndroid Drag and Drop Tutorial for reference. The app crashes as soon as it starts. Being new i cannot debug it. Any ...
0
votes
0answers
42 views

DragSortListView item disappears Android

I'm using this library. Item of this ListView contains ImageView, and another custom View, which contains a lot of TextViews. While Floating any item - custom View disappears, background of item ...
0
votes
1answer
50 views

Get left and top margin of imageview after calling scrollby

I am using image.scrollBy to move image drawable. However after calling image.getLeft() as well as image.getLayoutParams().leftMargin it returns 0. Any ideas?
0
votes
1answer
122 views

drag and drop auto scroll with multiple layout in android

"auto scroll not working very well when i drag and drop the image with multiple layout" I searched all over, but could not find a solution. i got a solution from this link: Make a scrollView ...
7
votes
2answers
214 views

Scroll gridview while dragging item (as shadow)

I am developing for api > 14 and I have implemented drag/drop functionality on a GridView. However, while dragging items to the top or bottom of the screen the GridView does not scroll. I would ...
1
vote
1answer
26 views

Android drag-n-drop from app to app

In Windows it is possible to drag-n-drop from application to application using OLE drag-n-drop. Is this possible with the new multi-windowed flavors of Android?
2
votes
1answer
36 views

android drag list adapter item to n drop into bin

I would like to implement a list activity where user can drag an item from a list view and then i would like to show a small recycle bin where user can drop the selected item. Recycle bin can appear ...
0
votes
0answers
82 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
0answers
83 views

Drag&Drop and Scaling of imageView in Android view jumps back on start position

I programmed Drag and drop and scaling of an ImageView and it also works. But if I move it to a position and then want to move it again it first jumps to the start position. How can I fix this ...
0
votes
1answer
48 views

Relative layout, mispositioning of images on on different phones

I am developing an android project of dragging and dropping images, using Relative Layout. The problem here is, the images are sitting in position as expected when I test it on my Galaxy Grand phone, ...
0
votes
0answers
46 views

Save ViewGroup state : Android

Note: Here I am not talking about saving state of activity through onSaveInstanceState(...) I am using https://github.com/eskim/android_drag_sample code to drag and drop views in my application. User ...
1
vote
0answers
130 views

Robotium Drag does not work

I have written a game using AndEngine that I want to test using Robotium. The problem is that robotium's drag function does not work. I have the robotum 4.0 jar added to the build path and exported, ...
1
vote
0answers
54 views

How to switch between two images using drag and drop in one specific horizontal layout in Android?

I want to switch between any two images among four images in different views or different layout using Dragged and Dropped. If A image is dropped to the particular B image which is arranged in ...
0
votes
0answers
43 views

Drag and Drop through Relative layout

Hi i am trying to learn Drag and Drop in android. I found an example that was using Grid View it worked fine now i am developing a simple app with Relative Layout. I get this conversion error when I ...
1
vote
2answers
129 views

Android how to drag imageview in relativelayout and then bring it back to place

I'm trying to make an imageview draggable using onTouchListener. This is the code i have so far for the drag switch (ME.getAction()){ case MotionEvent.ACTION_DOWN://IF USER PRESSED ON THE IMAGE ...
0
votes
0answers
61 views

get animated view after animation

I am animating a view using ObjectAnimator. After animation is completed, if I access views background, I am getting old view only. So, after animation view changes its properties or remains same?. ...
-2
votes
1answer
60 views

find center position in imageview android [closed]

I am working on drag and drop mechanism . This is an awesome Blog which helped me with the implementation https://blahti.wordpress.com/2011/10/03/drag-drop-for-android-gridview So i have dragview ...
1
vote
0answers
106 views

add subview in view of dragable gridview or drawing canvas with out creating bitmap images

I am using draggable gridviewand i have to add programatically subview in gridview i tried addView() method and else Draw(Canvas) method to add but it doesnt working. please help me, how to add ...
0
votes
0answers
94 views

Canvas HTML5 not ablbe to drag and drop an image in Ecllipse?

I am new to HTML5. I am not able to drag and drop inside eclipse. This function is working in browser. Please some one help me. Thanks in Advance. <!DOCTYPE HTML> <html> <head> ...
0
votes
1answer
189 views

Android: Pinch-zooming ImageView with appended child Views

I am working on an Android Tablet Application where I have a blueprint that I can pinch-zoom. From a side menu I am able to drag little symbols into the zoomable image which I can later click and ...
0
votes
0answers
102 views

Drag and Drop between activity layout and PopupWindow

I am working on one app where I am integrating Drag and Drop feature. My Requirement is I have to drag one view from the activity layout(current screen) and drop it over a list view which has shown ...
2
votes
1answer
153 views

How to draw a line from the source to the destination of a drag and drop operation?

I've implemented a drag and drop system and now I want to draw a line from the source to destination. How can I draw that line? I already used an extension of the View class, but it's not working. ...
1
vote
0answers
88 views

Multitouch drag and drop android

i want multitouch drag and drop in my android application. my reequirment is when user uses two finger then only dragging should be done. with single figure no dragging. how can i achieve this? my ...
0
votes
0answers
16 views

image view flickers on drag android [duplicate]

The problem is imageView flickers when dragged very fast,mayb because seMargins is called so many times,how do i avoid it?
0
votes
1answer
102 views

Move object along path with finger

Following what is explained on Android move object along a path I drawed a circle path and could animate an object along it Now I need to move the same object along the same path but using the ...
0
votes
1answer
95 views

Is it possible to batch adding polygons to GoogleMap View (APIv2)

I'm drawing a bunch (50-500) polygons on a Google MapView (API v2) in Android 4.0+, and trying to modify them with a touch event. The touch event I trap via dispatchTouchEvent(), and it's working, ...
0
votes
0answers
64 views

Display and drag view that is on top of other views

I need to display view which can also be dragged to required place on the screen.This view can be dragged on top of the other views as an overlay.How to achieve this.My layout may looks like the below ...
2
votes
1answer
252 views

drag and drop between two fragments?

I have a particular requirement where i need to drag a element in one screen then another fragment becomes visible where i can drop the dragged view . what is the best way to achieve this ? I am not ...
-2
votes
2answers
405 views

Drag and Drop Tutorial / Example [closed]

I am looking for some example code THAT RUNS to learn how to drag and drop an image in Android. The only examples I have found will not compile. Does anyone know where I can find a working example, ...
0
votes
0answers
103 views

ImageView flickers when setmargins is called while dragging a image

hi I am dragging a image by calling setMargins on a view in the on scroll method,however the image view flickers while drag is going on ,need help When the drag is going on the imageview flickers ...
0
votes
0answers
25 views

Android- Drag and drop in gridview [duplicate]

I have a gridview which displays the images in the cells.. I am trying to drag and drop those images around.. sort of rearranging/reordering the images. I browsed around and found out that I can ...
1
vote
2answers
157 views

Listview crashing upon scrolling

Hello stackoverflow, I have a ListView on my page - problem is it crashes each time i try to scroll it in some direction. It is not a regular ListView, I am using a github library, that can be found ...
0
votes
2answers
257 views

notifydatasetchange not working

I know that this question is asked many times but i can't seem to make it work in my app I create custom adapter that extends BaseAdapter, and inside it I put listener of drag and drop function to ...
0
votes
0answers
65 views

how to keep a button to previous position after drag and drop in android

In my android application i have a gridlayout and within it five linearlayout. Four linearlayout contain one button each and another linearlayout is empty. I want to drop a button to the empty ...
0
votes
1answer
65 views

Android, delete dragged item after drop

// Touched public class ChoiceTouchListener implements OnTouchListener { public boolean onTouch(View view, MotionEvent motionEvent) { switch (motionEvent.getAction()) { case ...

1 2 3 4 5 7