0
votes
0answers
44 views

Android MotionEvent.getX() get different values, without moving finger

This is my first Question on stackoverflow, so please say it to me when I do something wrong =) Im trying to turn an ImageView on the basis of finger inputs. For that Im working with the ...
0
votes
1answer
45 views

OnTouchListener (MotionEvent) animation

I've figured out how to work with the ontouch listener, but I still some problems. I want to animate an 2D Map viewed from bird perspective, the viewed area is calculated by an set coordinate which is ...
0
votes
2answers
74 views

Change EditText via slide/scroll/drag and normal input when only just touched

I would like to use two ways to change the input of my EditText field. The EditText field will be only allowing number ("12.34" format). Normal behavior: When the user touches the EditText it should ...
0
votes
0answers
40 views

How to call MotionEvent of parent view

I have a view with relative layout in it. I am adding a button programatically to my view using this code Button btn = new Button (this); btn.setId(2000); ...
0
votes
1answer
61 views

Android : Get view only on which touch was released

I am in a tricky situation, hope you can help me with it. I have few views (TextViews), horizontally placed one after another in a linear layout. When I press on textview1, drag my finger to any other ...
0
votes
0answers
83 views

Android - OnClickListener and Multi Touch

I've noticed in my app that when one finger is on a button and another finger touches down and up another button (click), the second button will not receive an OnClick event. I assume this is because ...
0
votes
0answers
311 views

Android: How can I use OnTouchListener to move the target with no delay?

I add the SurfaceView into the WindowManager and set the OnTouchListener for that view. I tried to move the view with my finger, but it did not immediately respond to me. i: view. m: finger or ...
0
votes
1answer
35 views

Action_MOVE activate after Action_UP

I am creating a game , and I want my character turn left or right by Action_MOVE, but only after the user takes their finger off of the display. I have a class that detects whether MotionEvent is ...
0
votes
0answers
170 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
0answers
40 views

Method setAlpha() does not get called in onTouchListener ACTION_MOVE event

I am trying to change the alpha of an ImageView by moving the finger on the screen. I have an OnTouchListener and in MotionEvent.ACTION_MOVE I have put the below code. Log shows the alpha value ...
0
votes
1answer
245 views

Android: Long touch on Button while MotionEvent.ACTION_MOVE

Ok... in my app i update the layout on MotionEvent.ACTION_DOWN and then i check the motion event coordinates to locate my buttons. I can show a toast when finger is released on different buttons. The ...
0
votes
2answers
43 views

player only moves when screen in ACTION_DOWN or ACTIONMOVE needs to move when being touched

ok to i created an ontouchlistener class: package drop.out.Game; import android.view.MotionEvent; import android.view.View; import drop.out.Game.Model.Player; public final class ...
0
votes
1answer
230 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
67 views

How to highlight multiple views in one sliding motion?

I'm stuck with a problem that concerns Android Motion Events. I have a 2D array of EditTexts. These EditTexts can contain only one letter. What I want to do is to be able to highlight them as I glide ...
0
votes
1answer
980 views

Multitouch: ACTION_POINTER_DOWN & ACTION_POINTER_UP

I'm trying to use multitouch as a method to press 2 things simultaneously. Here's my Code: TouchHandle.setOnTouchListener(new OnTouchListener () { public boolean onTouch(View view, ...