Android interface to define a callback to be invoked when a view is touched.
113
votes
5answers
47k views
Android - HorizontalScrollView within ScrollView Touch Handling
I have a ScrollView that surrounds my entire layout so that the entire screen is scrollable. The first element I have in this ScrollView is a HorizontalScrollView block that has features that can be ...
16
votes
3answers
11k views
onTouchevent() vs onTouch()
After many experiments with these two onTouchEvent and onTouch i come up that the onTouch works everywhere you want (I mean if it's activity or view) as long as you have declare the interface and put ...
7
votes
1answer
21k views
Image in Canvas with touch events
Seems simple, and yet I'm having problems with implementation.
I want a canvas with image on screen including onTouch events.
I have tried ImageView but I was not able to use canvas.
I have tried ...
7
votes
4answers
7k views
Android - Hold Button to Repeat Action
Morning all,
I'll admit straight off that I'm new to development and trying my hand at Android. I've been trying to search the 'net to find advice on how to implement some "Hold Button to Repeat ...
7
votes
3answers
4k views
ViewPager intercepts all x-axis onTouch events. How to disable?
Scope
There is a viewpager of two fragments. One of those fragments has a layout witch listens to onTouch changes at X-axis.
Problem
Layout doesn't get almost all Action.Move events when touching ...
6
votes
2answers
898 views
How can i pass Touch Listeners to Custom View for Drag and Drop?
I've a question concerning handling touch events for CustomView.I'm adding custom view's dynamically to layout (i.e FrameLayout). Those custom views having touchListeners for pulling points at corners ...
6
votes
2answers
8k views
Android multitouch?
As a developer, I tend to program first then research later. I was trying to implement a screen that would handle multiple user inputs. Basically map more than just one finger. I tried two things..
...
6
votes
5answers
8k views
Drag and drop images in android
I m working on a word scramble game which allows user to move the image to image..if the image doesn't match then it should come back to it's original position from where it was dragged.I have written ...
5
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 ...
5
votes
1answer
15k views
how to implement both ontouch and also onfling in a same listview?
i have a listview and implemented onclick and also onfling.problem is when i do fling(swipe left to right), onclick event of listview is also getting executed.How to overCome this problem? how to ...
5
votes
2answers
3k views
onTouchListener for entire screen
I have a screen filled with buttons, but want the onTouch-method to use the entire screen's coordinates. I first tried using a RelativeLayout with an onTouchListener, but never managed to make it ...
5
votes
1answer
3k views
Embedding ListView inside Gallery
The goal is to implement a Gallery whose adapter returns ListViews (in other words, vertically scrolling ListViews embedded in a horizontally scrolling Gallery). It sort of works after a bit of work, ...
5
votes
3answers
477 views
Drag Image on Touch
I want to drag an image on the screen.
how can i do this?
In my case, the image is simply download from the URL and placed on an activity.
I just want to drag this.
Thanks in advance!!
5
votes
1answer
2k views
Layout with dynamic position
I have a layout which might be a bit unusual. The structure is the following:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
4
votes
5answers
5k views
OnTouch in MapView only fires the first time
I'm trying to implement a double-tap zoom like function in my MapView. The event always fires the first time, but never subsequent times. Below is my code. I have a feeling it has something to do with ...
4
votes
1answer
1k views
Difference between OnTouchListener and OnClickListener
I made an app which implemements a View OnTouchListener. When I uploaded it to the Market, I get the following message:
This apk requests 1 features that will be used for Android Market filtering
...
4
votes
2answers
3k views
Make differents between setOnClickListener and setOnTouchListener
I need some help. In my android app I have a ViewFlipper that contains some LinearLayout. On every LinearLayout I have a ImageView. For switching between screens I use this code :
LinearLayout ...
4
votes
6answers
3k views
android: ZoomPicker breaks onTouchListener
I've got a webview which makes use of the built in zoom controls, as follows:
wv = new WebView(this);
wv.getSettings().setBuiltInZoomControls(true);
Note: this activates two main functions - ...
4
votes
1answer
566 views
Android : What use is MediaController's AnchorView?
I would like my MediaController to hide only when the user touches only the bottom half part of the screen, because i have some buttons on the top part that need to be accessible with one click.
That ...
4
votes
2answers
347 views
Searching location in android map via edittext
I am on the way of developing a map service in android and I want to search a particular place like 'Berlin' in my map. For that I placed an EDITTEXT in my map and whenever I am entering the name I ...
4
votes
1answer
3k views
play sound while button is pressed -android
i have this code
package com.tct.soundTouch;
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
...
3
votes
6answers
7k views
Android : ImageView getID(); returning integer
I've set up an onTouch class to determine when one of my 40 buttons is pressed.
The problem I am facing is determining which button was pressed.
If I use:
int ID = iv.getId();
When I click on ...
3
votes
2answers
2k views
Android: How to determine character index of a touch event's position in TextView?
I have a TextView with an OnTouchListener. What I want is the character index the user is pointing to when I get the MotionEvent. Is there any way to get to the underlying font metrics of the ...
3
votes
1answer
811 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 ...
3
votes
2answers
1k views
How to implement Button with dual short and continuous press?
I'm creating an MP3 player and want a dual Next Song / Fast Forward button. So if this button is pressed it will move on to the next song, and if it is held down it will fast forward through the ...
3
votes
2answers
175 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 ...
3
votes
2answers
153 views
Loop a sound while a button is pressed
I'm trying to loop a sound while a button is pressed down.
How could I do that while I'm pressing the button hadling the event "MotionEvent.ACTION_DOWN" will not stop running the sound? The way I ...
3
votes
1answer
312 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 ...
3
votes
1answer
358 views
onTouch giving weird touch points Android
Its quite simple thing which i am doing, i have done it before but now its not running as i expected. Anyways Let me explain briefly what i am trying to do and what i am getting::
Scenario::
I have a ...
3
votes
2answers
2k views
How to catch double tap events in Android using OnTouchListener
I am trying to catch double-tap events using OnTouchListener. I figure I would set a long for motionEvent.ACTION_DOWN, and a different long for a second motionEvent.ACTION_DOWN and measure the time ...
3
votes
3answers
1k views
Android - Problem detecting onTouchListener
So I have a customdrawableview applied to my activity.
I'm trying to implement a motion listen to the view so that I can detect different touch events in different locations. However, I don't seem ...
3
votes
2answers
423 views
How to rotate an image in circular manner with respect to its center on touch in android
I am trying to rotate a circular image in circle on touch with respect to its center.
I understand that this can be done using the OnTouchListener and onTouch() method .... by using ...
3
votes
1answer
371 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 ...
3
votes
2answers
1k 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. ...
3
votes
0answers
374 views
MotionEvent.ACTION_UP is not working [closed]
I have two images which I am using as joysticks. MotionEvent.ACTION_DOWN is working fine and is padding the images in the correct direction. MotionEvent.ACTION_UP is suppose to return the image back ...
2
votes
2answers
7k views
onTouchListener not working
I have the following code in my activity. In my xml, the video view is inside the linear layout. However, when the view is clicked, the onTouchListener never fires. I tried changing the ...
2
votes
6answers
645 views
Detect touch event on a view when dragged over from other view
How do I detect the touch event if the user touches on view A and drags to bottom over the view B. I want to detect the touch event in View B.
I added touch listener in view B but doesn't receive ...
2
votes
2answers
2k views
Trouble with onFling and SimpleOnGestureListener
I'm implementing a onFling detector much like the following question:
Android - basic gesture detection
However, I just cannot get it to work.
In case some way I've set up my app is causing this ...
2
votes
3answers
3k views
Can't handle both click and touch events simultaneously
I am trying to handle touch events and click events on a button. I do the following:
button.setOnClickListener(clickListener);
button.setOnTouchListener(touchListener);
When any one listener is ...
2
votes
2answers
975 views
Playing default android sound of button, clicking onTouch() method
In my android app I have some buttons, that should work with onTouch() method, course I need to change button's text, when finger in ACTION_DOWN position. But this buttons should to play default ...
2
votes
4answers
1k views
Android stops sending onTouch events
I have a custom view which I wish to handle touch events for. In particular, dragging a finger over the view should cause its contents to scroll. To do this, I have implemented the following ...
2
votes
2answers
2k views
Error with OnTouchListener
I get an error trying to implement an OnTouchListener:
The method onTouch(View, MotionEvent)
of type new View.OnTouchListener(){}
must override a superclass method
I have no idea why it's ...
2
votes
1answer
927 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 ...
2
votes
1answer
186 views
How to set OnTouchListener for dynamically created views?
I have two layouts, one LinearLayout and one RelativeLayout. In the LinearLayout I have 10 images. When I click one image, it is added to the RelativeLayout. Similar event is given for all 10 images. ...
2
votes
2answers
696 views
Issue in OnTouchListener for ImageView
I have set OnTouchListener to an image view. I want to do two different actions when user press down the image and also when press up the image. But always I am getting press down event as ...
2
votes
2answers
585 views
OnTouchListener, ACTION_UP fires automatically after 30 second timeout
I need the user to be able to touch and hold a button/imageview for a long time (> 30 seconds).
unfortunately after ~30 seconds an ACTION_UP is fired automatically.
Do you have any idea how i can ...
2
votes
1answer
53 views
Issue on changing the resource in imageView when that imageView is pressed
I am trying to write an application to change the image resource, when that imageView is pressed.
I referred this link.
I used both setOnTouchListener and setOnClickListener in my code. In both, i ...
2
votes
1answer
151 views
Dragging and pressing buttons - android
I have several buttons and I would like to press on one of them and drag through another presing them. Could you tell me which MotionEvent or another functionality should I use. I'm using ...
2
votes
3answers
521 views
Implementing onTouchListener for a TextView
I am implementing onTouchListener in MainActivity and attribute an OnTouchListener to a Textview tv, but as running no message pop up when the screen is pressed.
MainActivity
public class ...
2
votes
1answer
489 views
How to accept onSingleTapUp() on inner view while accept onFling() on outer view?
I have a view that covers entire screen (let's say ParentView), and child inner view ChildView that covers only portion of it.
I want to make ChildView to respond to onSingleTapUp(), while the ...