0
votes
1answer
43 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
19 views

i am getting “reacting on signal 3” on touch event

I need to make an ImageView which will simulate 3D rotation when swiping left to right, so i use this layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
2answers
60 views

Android onTouchEvent Coordinates Skip around

I my app, I have an element that requires the user to move it around on the screen, and to do this I am using a RelativeLayout and on onTouchListener. The problem that I am having, is that inside of ...
0
votes
0answers
17 views

Solution Multi-Touch event

I don't know how to make a Multi-Touch event. I move two Bitmaps and everything works, but I can only move one Bitmap. Can anybody suggest a solution? public class MainActivity extends Activity ...
0
votes
0answers
16 views

get the current view as I move on the screen with your finger

I have a problem. imagine a 3x3 matrix of integers and want to calculate the sum of the numbers (buttons) which I touch with my finger on the screen when I lift my finger how can I do? I tried using ...
0
votes
0answers
111 views

Android WebView - onTouchListener stop working after scrolling page

I'm working on an application that shows images (like a slide show), when the user touches the image I want to open a web page in a WebView. The problem that I have is how to monitor user activity? ...
0
votes
1answer
17 views

Find Middle Touch in Android

I'm using below method to get touch events on my android app. i need to identify middle touch. how can i identify when user touch on middle of screen ? @Override public boolean onTouch(View v, ...
0
votes
2answers
137 views

How to detect single tap on canvas drawings or bitmaps using onTouchListener?

The objective of this game is similar to that of a bubble popping game. Each time a bubble is touched, an interaction/event happens. So far this is what i have. It's kinda messy since i am new at ...
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
131 views

Listening to touch events in an Android View based class

when deriving a class from android.view.View, I see 3 possibilities to handle touch events: use the setOnTouchListener method to add a listener instance override the View.onTouchEvent method ...
0
votes
0answers
105 views

ViewFlipper unable to swipe across children if children contain relativeLayout, textView, etc

I have a problem with the AdapterViewFlipper that is really starting to drive me mad. I have an AdapterViewFlipper that contains a set of Fragments. Each Fragment can have its own layout. The layouts ...
0
votes
0answers
204 views

detecting single tap on viewPager with Universal Image Loader

I'm working on adapting the Universal Image Loader sample included in the source code. My only goal is to bring up a menu when the user performs a single tap on one of the images on ViewPager mode. ...
0
votes
0answers
111 views

Android: OnTouch not called with fixed touch coordinates

I've implemented the OnTouchListener with the OnTouch method. I'm currently debugging my app and it seems that the onTouch method is not called (repeatedly) when the coordinates of the touch are not ...
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
81 views

Android onTouchEvent and identify circle shape

I am using android 2.3.3. I need to identify if user is drawn circle (clock-wise) on the screen using onTouchEvent. I can collect the points using MotionEvent.ACTION_DOWN, ACTION_UP..etc but how to ...
0
votes
1answer
121 views

How to set onTouchListener on BitMap

How do I set an onTouchListener for a Bitmap. e.g pongball = BitmapFactory.decodeResource(getResources(), R.drawable.pongball);
0
votes
1answer
42 views

Looping a canvas in Android

Does anyone know how to loop this drawing of the Canvas? I want to later on add an onTouch method and get the X position. Thank you. @Override protected void onDraw(Canvas canvas) { //Canvas ...
1
vote
2answers
138 views

Drawing icon on map where it is touched

I am trying to draw some icon on the map as long as it is touched. I think I am almost there. Here is the code. package com.example.googledemo4; import java.util.List; import ...
0
votes
0answers
37 views

How to create new marker on mapview when lifting finger

My map shows my current location with a marker (I've accomplished this). Now, I would like to create a new marker (indicate as destination) after I touch on the map. However, the onTouchEvent that I ...
0
votes
2answers
143 views

Android: OnTouch not working

I am working on a Multi screen application in Eclispe I am trying to get the onTouch method to work. package com.example.connectfour; import android.util.Log; import android.view.MotionEvent; ...
0
votes
1answer
72 views

implement onTouch event in my timerproject

I have a timer i want to start when holding down a button, and reset the timer when i let go. It was possible with onClick but i cant really figure out how to use the onTouch event in this ...
1
vote
0answers
48 views

implement OnTouch listner in timer

Iam new to android and I have a problem. Im trying to create a app that when you hold down a button , a timer starts. If you let go of the pressd button the timer reset itself. It will play a sound if ...
3
votes
2answers
179 views

How to do something repeatedly while a button is pressed?

I'm developing a TV-Remote Simulator app in Android using a specific middleware (not of importance). In the case of Volume Buttons (Volume+ and Volume-), what I'm trying to do is to send the "Volume ...
1
vote
0answers
522 views

Extending Horizontal ScrollView to block ontouch events on childs doesn't work

I have been trying to implement a horizontal scroll view where the user selects from a list of images and it gets displayed at the centre of the screen. Originally, my problem was that the scrolling ...
0
votes
2answers
89 views

Which is better approach for OnClick Implementation?

For implementation of onClick function which approach is better? Saving touch start / touch up coordinates and processing this values for closeness? Like, if starting point and up point close each ...
1
vote
1answer
204 views

onTouch with Multitouch and SoundPool Motion Events

So i'm making a xylophone app for android and i've run into a problem, i'm not sure how to correctly use onTouch. Right now I can press an image and play the sound, but I cannot play two sounds at ...
0
votes
0answers
154 views

Garbage Collection Touch Event (Action_Up Triggered) Android

All I am having an irritating issue with a custom camera activity I have created. I wanted to have a soft button when pressed focus the camera when the user presses the button (Action_Down), take a ...
0
votes
3answers
165 views

Why getAction method always return ACTION_DOWN?

I am using onTouchListener for a layout. I want to take the click outside the layout. I set onTouchListetener for the layout. But motion event always shows ACTION_DOWN. Even i touchOutside the view, ...
-1
votes
2answers
93 views

How to draw something or write on EditText without using keyboard?

How should i do this on EditText? Any help or suggestions would be greatly appreciated ?
0
votes
0answers
96 views

Droid: How to respond to touch events in main activity with touchlisteners?

Sorry for my naivety, but I can't figure out this fairly basic problem. I've a custom keypad made from a table layout of imagebuttons. I have a touchlistener attached to each button. When a button is ...
0
votes
1answer
1k views

android on touch draw line

I have a code that get the coordinate of image view, and i want to draw a line when the user touch 2 times in the imageview. The imageview has a bitmap from drawable. for more detail this is my code : ...
0
votes
0answers
168 views

OnTouch worked for 1 Button, but not for 3

im new with Android, but have experiance in c# and c++. Im just trying to display whenever a button is pressed. I searched and found out, that the onClick event cant do that, therefore i use the ...
0
votes
0answers
124 views

Android ontouch event

I have this code and it works great on iOS devices but on my brothers Galaxy S2 it doesnt, anyone got any ideas why? What I want to be able to do, is get the coordinates of the touch position, so ...
0
votes
1answer
80 views

TouchEvent Doesn't Work anymore

I'm desperately trying to solve this problem: Only a ACTION_DOWN event triggers my method. The whole day, it worked fine, but now it doesn't work anymore but i didn't change anything. public boolean ...
0
votes
2answers
347 views

How can I get coordinates of two points simultaneously touched on screen in Android?

I want to know that is it possible to get two correct set of coordinates point when the screen is touched simultaneously on to points on screen . If yes than how can this be used. Googled it but didnt ...
0
votes
0answers
233 views

Implementing Double tap into TouchImageView - dragging picture doesn't work now

I have a problem. I've used TouchImageView code from here - https://github.com/MikeOrtiz/TouchImageView . I have implemented into it double tapping functionality. It works fine, but now I can't drag ...
1
vote
2answers
248 views

OnTouchListener prevents map from moving

I am using google maps API and I have some code that tries to capture the position of the center of the map after the user has dragged it. MapView mv = ...; mv.setOnTouchListener(new ...
1
vote
2answers
1k views

ImageView Drag Limitation In Android

I have an ImageView in a layout and set OnTouchListener on ImageView to drag the ImageView. It's working perfectly. My problem is how can I prevent from move ImageView to out of layout range? This is ...
1
vote
2answers
326 views

updating ProgressBar in android

Image.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { Trace(array); ..... ...
0
votes
1answer
179 views

Detect OnTouch on AppWidget. If is it possible?

Detect OnTouch on AppWidget. If is it possible? Hello! I'm trying to create my first AppWidget for Android 2.1 in which a client may have a chance to select an item on my custom view. I'm going to ...
0
votes
1answer
131 views

Simultaneous GridView button events/determining which button has been touched

I'm having a hard time trying to figure this out. I have a gridview of 8 buttons. At the moment I'm using an onItemClickListener to trigger the buttons actions, however this produces two problems for ...
0
votes
1answer
172 views

Get touch event coordonate on an imageview

I have an onTouchListener on an ImageView and I use event.getX() or getY(). My goal is to display an image and launch a dialog or something when the user touch a particular part of my image. The ...
0
votes
1answer
96 views

glulookat “resets” after movement (with android)

here's my problem: I'm making a pool game in android and I want to make the camera rotate freely around the center of the table. The thing is that when I stop my movement it looks like the glulookat ...
1
vote
3answers
283 views

How do I make a circle grow while the screen is being touched (Android)?

I'm relatively new to Android and very new to graphics. I can draw a circle on the screen and even drag it around and grow (radius continues to increase) while it's moving, but when I just touch the ...
0
votes
1answer
158 views

Why does this onTouchListener throw NullPointerException?

I dont undestand, i have used this same code in main activity from the same app, and worked well. But when i use this in other activity, it throws me NullPointer.... Why is this? private ...
0
votes
1answer
681 views

Android - User paints lines with his finger

I want to build a tool, where the user can paint some simple objects over a picture (eg line, circle or arrow) on android. I started trying the line part first, and indeed I could succeed on painting ...
0
votes
1answer
492 views

ontouchevent in android

i am doing an application in which it will display the position of the ontouch. my code is as follow i have edited my code . public class AndroidTabLayoutAcActivity extends Activity{ DemoView ...
1
vote
1answer
190 views

Android Pinpoint/Touch on image to display text

My Android Application need to build a Symptom Checker like this website. I need to display different text/image when different part of human body(image) being touch. ...
1
vote
1answer
193 views

Adjust sensitivity of setOnTouchListner in Android

Is there anyway I can adjust the sensativity of the setOnTouchListner . Currently it is typing multiple values on each touch..Thanks!
0
votes
4answers
116 views

onTouch method - Keeping up with which instances of the button have been clicked or pressed

I have a loop where i am created multiple button instances and with each instance they have a TouchListener. However, i am having trouble figuring out how to manage when the different buttons have ...

1 2