Android interface to define a callback to be invoked when a view is touched.

learn more… | top users | synonyms

1
vote
1answer
1k views

Android Rotate image ontouch

i'm working on a piece of code, it scales the image, zoom it and move using onTouchListener. Now i want to rotate the image using touch, following is my code: @Override public boolean ...
7
votes
2answers
3k views

OnTouchEvent not working on child views

I have a Linear Layout that has a Button and a TextView on it. I have written a OnTouchEvent for the activity. The code works fine if I touch on the screen, but if I touch the button the code does not ...
1
vote
2answers
917 views

Android: How to Stop Calling View.OnTouchListener ACTION_MOVE

I have a simple slide action for LinearLayout View using TouchListener. The problem is MotionEvent.ACTION_MOVE keeps being called when I touch and move. How can I stop MotionEvent.ACTION_MOVEfrom ...
2
votes
1answer
978 views

Android mouse cursor listener like OnTouchListener

When using touch input on Android, I am able to get the coordinates of the location in my view where the user pressed, using OnTouchListener. With a mouse connected, this same listener can be used to ...
1
vote
3answers
293 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
2answers
492 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 ...
0
votes
1answer
432 views

Corona SDK: how to remove list view item listener?

I created listview in Corona: myList = tableView.newList{ data=data, default="res/blueBg.png", backgroundColor={255,2552,255}, ...
1
vote
2answers
724 views

Android: onTouchListener not working properly

I'm currently working on an app that has a RelativeLayout that has 4 child FrameLayouts, each FrameLayout has a set of ImageViews inside it and the inside View has it's own behavior. I'm trying to ...
1
vote
1answer
255 views

Android: OnTouchListener.OnTouch not called in multiTouch

I implemented multitouching buttons in my app, by definyng and attaching my version of OnTouchListener (and onTouch method) to all my buttons. All works perfectly, except for one thing which seems to ...
0
votes
1answer
142 views

Android scaling and touch issue

I'm working on an android app that allows users to upload images to my server. On the selection screen, I allow them to scale the images using pinch to zoom, and then they select the image by tapping ...
-1
votes
1answer
320 views

Android: executing the thread in a loop with onTouchListener()

Hi in my app there are 8 buttons. Each button is configured onclickListener() when it is clicked the String is written ti the socket. Now i want that when i press and hold the button the String must ...
0
votes
1answer
69 views

Cancel animation if ACTION_UP

I have onTouchListener on my gridView and if ACTION_DOWN is pressed the animation(scale) starts. How do following things: How to hold scaled image if it's ACTION_DOWN pressed If is ACTION_DOWN ...
1
vote
0answers
408 views

Android java: OnTouchListener return false but keep handling subsequent actions

I am making an app for Android in java and have a problem on with the OnTouch: I want to return false after handling the ACTION_MOVE event to have a sub view also handle the event, but still keep ...
0
votes
1answer
169 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 ...
1
vote
1answer
153 views

Conflict between onTouchListener and onCreateContextMenu?

whats up?? I was creating a movable textview, so I could drag and drop it throught the whole screen... then, I decided to add Contextual menu to it, so I did it, but contextual menu only appear if I ...
0
votes
0answers
42 views

Slide application

We have layout which contains imageView, textView1, textView2. The goal is to make available sliding like in photogallery. But where to set OnTouchListener? On layout? It is covered b other views. On ...
1
vote
1answer
628 views

Cannot set OnTouchListener

Falks, it is going to be silly mistake but I really cannot guess where is it. I`m trying to set OnTouchListener but method onTouch is not invoked. Here`s my code: public class StepActivity ...
1
vote
1answer
640 views

Android tab listener wont refresh on selected tab

I hope you can help, I can't seem to get the current tab to reload if a tab is currently selected and then a user click on it again, could someone point out what I'm doing and perhaps modify my code ...
0
votes
1answer
776 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 ...
3
votes
1answer
850 views

View only registering MotionEvent.ACTION_DOWN

I'm having an interesting problem...that I can't seem to find the solution for. I'm using an ObjectAnimator to rotate an ImageView; but the onTouchListener only seems to be registering ...
1
vote
1answer
808 views

Using OnTouchListener and OnLongClickListener interferes with eachother

I have got this button which uses onclicklistener and onlongclicklistener, but also a button which uses ontouchlistener... the point is button 1 is 0,1 second pressed, button 2 is 2 seconds pressed, ...
0
votes
1answer
516 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 ...
0
votes
1answer
441 views

How to draw rectangle on Buttons by using canvas

I have 3 LinerLayouts inside a RelativeLayout, each LinerLayouts contain 9 Buttons. Now i want to draw rectangle boxe on top of Buttons whenever i touch the buttons and that rectangle box should ...
0
votes
4answers
279 views

Android OnTouchListner issue

I am trying to implement the onTouch event in my program but it is not working. I'm doing it in a simple manner but it is not happening. My code is: public class VideosActivity extends Activity { ...
1
vote
1answer
191 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. ...
0
votes
1answer
495 views

In webview, override TouchListener

I use webview in android and need to recognize is it scroll or not when scroll webview, hide my option tab and stop scrolling, set visible webview. www.setOnTouchListener(new OnTouchListener() { ...
3
votes
1answer
321 views

Android onTouch event not occuring?

Hello and thank you for taking the time to read this. For several days now I have been researching and stuggling with my code to get a textview to update the score when a "ghost" is touched. This is ...
0
votes
2answers
252 views

Android onTouch event only being called first time

I have a gallery viewer for an Android application. I need to show, first, a big picture, and then below it, the thumbnails of other pictures. After 5 seconds, the thumbnails disappear, and when the ...
2
votes
3answers
1k views

Android: View.setClickable consumes click event

I have a custom Gallery view for horizontal scrolling and several child views that all should be clickable. Setting childview.setOnClickListener() doesn't work since it always consumes the touch ...
1
vote
2answers
344 views

Android onClick only works once

So I'm realy confused I am having a View(R.layout.main) which includes a custom view (canvas) this View contains a button which is overlayed over the canvas but when I click the button the ...
3
votes
1answer
397 views

GestureOverlayView not working

I am kind of puzzeld right now : I created 4 gestures using the Gesturebuilder 1 Gesture is a swipe pointing up 2 Gesture is a swipe pointing down 3 Gesture is a swipe pointing left 4 Gesture is a ...
1
vote
3answers
2k views

Can't get touch event detected on a view and click event detected on a parent view

I've got a layout 'layout_base' that fills the screen and a child view 'home'. I set an OnClickListener on the 'layout_base' to do some action (close a popup if it's open), and an OnTouchListener on ...
0
votes
1answer
426 views

Android and onTouch

I have class where I draw image. This is code: public class CanvasdrawActivity extends Activity implements OnTouchListener { ImageView imageView; Bitmap bitmap; Bitmap bitmap2; ...
-1
votes
3answers
1k views

Onclick and onTouch not working properly in android

I have created an activity implementing on touch listener and onclick listener . Both are not working together. If ontouch works on click does not work and if onclick works ontouch does not works. ...
1
vote
2answers
187 views

Draw image in activity android

I have a activity where I have two imageViews. In onTouch I recognize which imageView was clicked. Now I have a question. How I can draw new very small image in place where I clicked. I know that ...
1
vote
1answer
197 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
2answers
415 views

Double Tap with swipe in android?

I am using the answer from Mohan at DoubleTap in android But I dont know How to implement it. I have a webView and I want to detect swipe from left and right and double tap. How could I implement ...
0
votes
4answers
120 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
vote
2answers
924 views

Android ListView - getting a number of element in the list in ListView.setOnTouchListener

I'm trying to get the list item number in the onTouch method. That is how i do it: ListView myList; ... myList.setOnTouchListener(new OnTouchListener() { @Override ...
0
votes
2answers
311 views

How to change pictures on onTouch?

I'm a beginner in android and at the moment, I'm working on simple app. I have 7 pictures and I want to change one-by-one when user touches the screen. Here's my code, my app crashes on the second ...
0
votes
1answer
531 views

How to launch OnTouchListener on the elements of a ScrollView but only when the user is not Scrolling?

i have a huge problem managing my horizontal scrollview. It haves inside a horizontal linear layout with a lot of vertical linear layouts wich haves a text and a image. I want that when the user ...
0
votes
1answer
75 views

Fastest way to get a TouchEvents in a new Acitivity

I want to get a TouchEvent in an Activity as quick as possible after the Activity was created/started. I know three options: with onClick in layout.xml with OnClick/TouchListener OnTouchEvent ...
1
vote
3answers
1k views

how to move an image on xml layout when user on touch event?

I have implemented an application with image. In my application I have used on image when ever the user touch on image I would like to move the image along with his finger touch. I have implemented my ...
1
vote
4answers
2k views

Android - on touch listener fired twice

In my code, ontouch listener of a button is fired twice. please find below the code. I am using Google API 2.2. Code in java file .... submit_button = (Button)findViewById(R.id.submit); ...
0
votes
1answer
168 views

(android) How I understand touch the advertisement in code?

I want to know how many user click the ads on my application.Because of this I want to write code to understand touching ads. CODE : final View touchView = findViewById(R.id.advertisement); ...
0
votes
2answers
206 views

How to disable the onListItemClick() action if the gestureDetector action happend

I have read the post: Android - basic gesture detection and implemented gesture detection. But I have the follow problem. After the action onFling() occurred, the onListItemClick() is calling. How to ...
2
votes
3answers
2k views

Where should I implement the Android onTouchListener?

I am new to Android development and at the moment I must make a decision of where to control the gesture input, but I just don't know the pros and cons of where to grab the touch input. I have been ...
4
votes
2answers
2k views

Why MapView onTouchListener is only fired once? [duplicate]

Possible Duplicate: OnTouch in MapView only fires the first time I want to detect every touch made by the user to the map and hence I have registered a listener for an instance of MapView. ...
0
votes
1answer
75 views

The RadioGroup object does not send Touch to the activity

In an activity with a RadioGroup and 4 RadioButtons, touch input on the RadioGroup is not being propagated to the Activity's onTouch override. The goal is to have fling gestures work for the entire ...
1
vote
2answers
157 views

Continues counting button

Im trying to create a button when pressed and held would add 1 or any nubmer to it until the buttin is released. My goal would be to create a on screen cursor key controler to move around a button / ...

1 5 6 7 8 9