Tagged Questions
0
votes
1answer
14 views
multiTouch android | getting Action of each touch point
I am trying to handle multiTouch in android, my plan is to use 2 fingers in the app. I know how to use one touch point, but I am not sure about how to use more than one touch point.
Here is my code:
...
0
votes
0answers
10 views
Simulate Multitouch Event In Android Programmatically For Testing
I need to simulate multitouch events (zoom, pan, etc) to use in instrumentation tests of the Android app. One way would be to manually generate corresponding sequence of MotionEvents that imitate real ...
0
votes
4answers
29 views
Stop users from pressing two buttons at once?
Is there a way to only register a single button press? At the moment in my activity I have two buttons that each start another activity - at the moment if I press them at the same time both activities ...
1
vote
0answers
11 views
Android: Distinguishing between scaling and other multi-touch gestures
I'm currently in the process of creating an application in which a large amount of input is through the use of surface gestures. This also involves the use of multi-touch gestures. In a very short ...
0
votes
0answers
19 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 ...
2
votes
1answer
15 views
The difference of using MotionEvent.getAction() method
What is the difference between two apporoach below?
int action1 = event.getAction() & MotionEvent.ACTION_MASK;
int action2 = event.getAction();
0
votes
1answer
21 views
Is multi-touch concurrent programming?
Like I wrote in the title, i didn't understand the onTouch() methods behavior when it comes to multi-touch. So i thought that it can be an example of concurrent programming. I f it is not can you tell ...
-2
votes
0answers
12 views
How should I handle two pointers, during multitouch?
:)
I'm playing with multitouch on android. I want two circles to follow my fingers. But only one of the circles does what I want. What should I do in the case MotionEvent.ACTION_DOWN, to separate the ...
0
votes
1answer
63 views
How to draw with multiple fingers in canvas
I am using android Canvas class from creating drawing application. This is my first attempt to work with Canvas class. So far the code that i used is working fine and the drawing is working fine. But ...
0
votes
0answers
21 views
Finding Images after canvas translation with Multitouch Controller
I am using the Multitouch Controller made by Luke Hutchison found here
https://code.google.com/p/android-multitouch-controller/
My problem is this. I can place an image onto the canvas. I can ...
0
votes
0answers
67 views
What Android Events Are Triggered from Touchpad on Logitech K400?
I know that my Logitech K400 keyboard with touchpad can cause some Android apps (like the Dolphin Browser) to zoom in/out when I hold CTRL and swipe with 2 fingers up or down.
I have written an app ...
1
vote
1answer
46 views
Multiple ACTION_DOWN events do the same
I want to make 3 buttons touchable at once so you can touch a button without removing the finger from another one. I did it so far with ACTION_DOWN, ACTION_POINTER_1_DOWN and ACTION_POINTER_2_DOWN in ...
0
votes
0answers
127 views
Cocos2d-x multi-touch acting strange with iOS
CCSetIterator iter = touches->begin();
for (; iter != touches->end(); iter++)
{
CCTouch* touchPoint = (CCTouch*)(*iter);
...
0
votes
0answers
78 views
dispatch touch event to new activity
I have an activity A inside that two imageViews(like 2 pages of the book). I have implemented onTouchListner for both imageviews and inside onTouch method if user perform pinch-to-zoom i am starting a ...
4
votes
2answers
104 views
Multitouch image that plays sound after a certain sequence
I am confused how to start building an application like below.
Scenario: I have an image where two bells(bell-1,bell-2) hanging like pendulum.My purpose are-
If i sweep bell-1,it will go right side ...
3
votes
2answers
158 views
Android: ImageView height bounds due to some layout property
I am implementing multi-touch zoom to ImageView which got well but when I zoom it out, some part of image hides like goes behind of some view or due to some height restriction.
Layout code
...
1
vote
0answers
81 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
81 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
35 views
How to use multitouch for pictures
I'm making an app in which I would like to implement an offline map service for the city Rome, I thought the simplest way to do this was to implement an high-resolution map-picture of the city, but ...
0
votes
4answers
160 views
Android button onclick multitouch
I have 2 buttons and I need to read onClick event from second button when first is pressed down now and v.v. Like in keyboards. How to do that?
Edit
No, no! I don't need to check was first button ...
3
votes
2answers
94 views
android - why there is different Action_mask value for different devices
I have made an application which is running perfectly fine on devices below ver 4.0 or we can say ics, but above ics its not working as it have to.
In my application i was trying to make multitouch on ...
1
vote
0answers
166 views
two finger or pinc zoom to mapview in osmdroid
I need help
I'm trying to zoom to mapview by getting users multi touch points (firstly 2 finger touch)
I know there is setMultiTouchControls() function but this is not what I want to do.
I tried to ...
3
votes
1answer
355 views
android multitouch, action pointer down not working properly
i have tried to detect two touches on my two imagebuttons which is single Relative layout .
The problem is its showing action_down values on both buttons but no action pointer down value.
My code is ...
1
vote
1answer
181 views
MotionEvent.ACTION_POINTER_DOWN DOES NOT detect position
I am a newbie in Android, lately I got this weird thing:
I have my customized View, in onTouchEvent method, i tried to detect multitouch gesture, but the MotionEvent.ACTION_POINTER_DOWN will always ...
0
votes
0answers
77 views
Capture two motionEvent in different views
I want to capture and process two complete motionEvent separately in different views (ImageView in this case), and that the motionEvent doesn't mix between them. Specifically, i want a multitouch ...
1
vote
0answers
90 views
Android multitouch strange bug when touch point reach limit
I am make a application on android that need multi-touch gesture! I found that my devices Novo 7 (ainol) supports 5 touch points. I implement onTouch for a View like this
public boolean onTouch(View ...
0
votes
0answers
74 views
Rotate and zoom with fingers(not compas) osmdroid mapview
Hi everyone
even I've been looking for solution during two weeks, I couldn't find any proper solution.
Please can anyone help me about how to rotate a osmdroid mapview or a view depending on user's ...
1
vote
1answer
57 views
Android Multitouch control
I am trying to make a mulitouch control, but i always get errors when I remove my finger in a different sequence, as I give it to the screen.
@Override
public boolean onTouchEvent(MotionEvent event) ...
0
votes
1answer
50 views
Find number of touches supported by a device
Is there any way to find out the number of touches a device supports.
Instead of manually touching and finding out the actual value, is there a way to programmatically find the value?
1
vote
0answers
69 views
Emulating physical buttons / lower level touchscreen control
One thing I find many Android games and emulators get wrong is when the user presses multiple (on-screen) buttons simultaneously. I'm wondering how one could fix that.
Imagine a game like Super Mario ...
1
vote
1answer
274 views
ScaleGestureDetector not detecting two finger movements in Android 4.2
I have class that implements ScaleGestureDetector.OnScaleGestureListener. On devices running Android 4.1 and earlier, the methods (OnScaleBegin, OnScale, and OnScaleEnd) get called for just about ...
1
vote
0answers
152 views
Read Raw Touch Input Events on Android
I've been doing some research to see if something like this is feasible, and I haven't come up with anything good yet. I would like to write an application that intercepts Android touch information ...
1
vote
1answer
234 views
Why is multitouch not working with andengine GLES-2 SimpleBaseGameActivity?
Hi I'm trying to make a two player pong game but the Multitouch part of it is not working I know the device I'm using is Multitouch enabled so something in my code must be wrong. Right now i have two ...
0
votes
0answers
91 views
Multitouch no longer working correctly with Android 4.0
I've made a simple multitouch application that works just fine and dandy with Android 2.0 and 3.0. The user touches on the screen and an image draws beneath it. Place a second, and two images will ...
0
votes
2answers
304 views
how do you use MotionEvent.ACTION_POINTER_INDEX_SHIFT?
I've been working in a game and I'm trying to make the controllers, nothing too complicated and to do this I need to track 2 inputs(fingers): 1 the fire button and move keys.(up, down, left, right)
...
4
votes
2answers
393 views
Programmatically find how many fingers in multitouch Android device supports
On Android, it is possible to check programmatically if the device supports multitouch or not wth ...
2
votes
1answer
125 views
how to respond to multitouch of android in java
i'm currently work an android app that have gamepad/game's controller function with client-server system, where the client is android and the server is java desktop application in PC and bluetooth as ...
0
votes
1answer
110 views
Good way to check if a view is pressed
I'm trying to manage a multi task app that works with many buttons.
For this purpose i made this function:
public boolean isTouched(View view, MotionEvent event) {
boolean touched = false;
...
0
votes
1answer
94 views
Multi Touch [Android]
I my code, severely simplified is the following:
if(action == MotionEvent.ACTION_DOWN){
x = me.getX();
y = me.getY();
}
else if(action == MotionEvent.ACTION_UP){
x ...
1
vote
2answers
77 views
How does the OnTouch event behave?
If there are multiple fingers on the device, does the onTouch-listener run once for every finger, or it runs once per event(finger down, move, etc..) and include every active touch pointer?
And if
...
2
votes
1answer
57 views
android/java multitouch, whats & in this case and whats >>?
I'm new too the android world, and quite new too Java as well, but with a few years as a dot-net:er and a few school points in Java for a few years ago I'm not totally behind :).. but I still don't ...
1
vote
1answer
118 views
Is there a permission to check the number of touch points a device can handle at once?
I'm working on an app that needs to be able to handle up to 5 simultaneous touch events (essentially a click with all 5 fingers at once, anywhere on the screen), but I realized that my testing device ...
0
votes
2answers
343 views
Inject multitouch gestures in Android via /dev/uinput
I am looking for a way to inject multitouch gestures into Android. So far I open /dev/uinput and write to the file-descriptor. This solution works for "one" touch. How to inject multi-touch inputs?
0
votes
1answer
120 views
Android - multitouch - ACTION_POINTER_DOWN cannot be captured after onClick at View
I have layout like this -
<RelativeLayout
android:id="@+id/relativeLayoutTable"
android:layout_height="fill_parent"
android:layout_width="fill_parent" ...
1
vote
1answer
127 views
How to set Width fit to Screen in Landscape Orientation (Using TouchImageView) in android
I m using the MikeOrtiz TouchImageView From the GitHub. Here is the link TouchImageView
I m trying to set the width fit to Screen in landscape Orientation only
here is an image to show what i want ...
0
votes
0answers
109 views
Android - multitouch - ACTION_POINTER_DOWN could not captured at ViewGroup
I am quite new to mutlitouch. So I need your help.
I am having View which is capturing ACTION_DOWN event, however, I am returning false here from my onTouchlistener of View. So I am expecting that ...
1
vote
1answer
313 views
How to enable Scale in Android ScrollView in a way that doesn't prevent scrolling it and clicking on it's child items?
I have a custom view that extends Android ScrollView. The direct child is a relative layout which has children that are clickable.
I want to be able to:
detect onScale Gesture on the scroll view ...
0
votes
0answers
72 views
Weird multi touch issue on Android(Not getting MoveEvent)
I have some java code for dealing with multi touch on the Android.
I basically need to track two fingers.
It works fine most of the time.
However, sometimes when I drag the two fingers close to each ...
0
votes
0answers
258 views
Multitouch on bitmap to resize it on surfaceview
I have created bitmaps on surfaceview.But I want to resize the image(bitmap) on surfaceview with two finger touched. I searched help from the internet but I still couldn't figure out how. Can someone ...
0
votes
2answers
182 views
MultiTouching - touching buttons in HorizontalScrollView - Android
I try to make an app with multitouching and I use this code:
Multitouchng code
It works, but I've got problem, because in my app I've got HorizontalScrollView (HSV) and when I press buttons from ...





