An event that is triggered when a user 'touches' a GUI component

learn more… | top users | synonyms

0
votes
0answers
13 views

ActionBar touch events being overriden by MediaController

I'm building an app with custom MediaController and VideoView (both using 99% of the original android code) to display my videos. When the activity is in landscape i set the actionbar (using ...
0
votes
2answers
29 views

Android: Touch event for select item on a canvas

I have many circles drawn on the Canvas and want to know which of them is touched. One solution is to create a bitmap as the size of the screen and draw a copy of the circles that are on the screen ...
0
votes
1answer
32 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
11 views

OnGestureListener always activates longpress

I am currently trying to implement GestureDetector.OnGestureListener on a class that extends an ImageView. I have: private GestureDetectorCompat detectorCompat; ... // in the setup of the view ...
0
votes
0answers
12 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
1answer
19 views

Android ScrollView Intercepts Clicks, should not do that

I have a view with an onClickListener inside of a scrollview. The view should react on clicks, but the scrollview interpretes almost all touches as ACTION_MOVE and intercepts the touch events, so i ...
0
votes
1answer
37 views

Rectangle is not drawn at its original coordinates

I am facing problem while creating a CustomView which draw a Rectangle and can re-size by its corners. Following is my code. public class CustomView extends View { Canvas canvas; private ...
0
votes
1answer
22 views

Soft Keyboard not displaying on touch in WebView DialogFragment

Edit: I have looked at the error page for this; no answers work. It seems it is an Android system bug that has not yet been solved. First off I've referred to this similar question. But the solution ...
0
votes
1answer
34 views

Android onTouch must be triggered twice in order to trigger actionBar.show() and button position change

I'm encountering a weird little problem with my onTouchEvent. When you touch the edge of the screen, it's supposed to show the action bar (using ActionbarSherlock, not the android actionbar), and move ...
2
votes
0answers
21 views

Table - Conflict onTouchEvent and OnClickListener

I have a TableLayout with a HScroll and VScroll so I can scroll in all directions. For this scrollable layout I used: Scrollview vertical and horizontal in android . This uses a onTouchEvent. There ...
0
votes
2answers
30 views

Button Highlight - how to apply onTouch to 2 buttons

i have 2 buttons like this: Button b = new Button(this); b.setText("Button onw"); b.setId(1111); b.setBackgroundDrawable(R.drawable.button); ...
0
votes
2answers
28 views

onTouch event on Android Games

my question is not only about onTouch events but about every method I can use to recognise a touch on certain areas of the screen. Right now, I have a "background" image, which I use as layout that ...
0
votes
1answer
19 views

Customs views and TouchEvent

I'm programming a custom view that divides the image into pieces. The objective is to exchange the chunk touched by the adjacent piece depending on the displacement direction. The problem I have is ...
0
votes
0answers
29 views

Using onTouchEvent when moving ImageView - image flashes and duplicates

I spend all the night to figure out what the problem, but with no success. I try do add an ImageView to RelativeLayout, and move it (drag it) by finger. I tried many solutions, from very simple and ...
0
votes
0answers
25 views

How do I modify TouchImageView to get *right* image pixel color?

I am using Mike Ortiz' TouchImageView class. Now I would like to add new functionality to his code, to be able to get the pixel color, touched by the user, of the shown image. I have been trying to do ...
0
votes
0answers
81 views

Image scale animation onTouch-onClick - Android

Okay, first of all, I have to warning that everything here will be a newbie questions requiring a lot of help. I'm really rookie in Android developing and I don't know at all how to resolve this task. ...
0
votes
2answers
54 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
1answer
67 views

View Pager Android Filter Touch Events

I am using a view pager to create a picture gallery. I currently have a custom ImageView that allows a user to pinch and zoom and pan. The problem I have is how do I differentiate between a pinch to ...
0
votes
0answers
16 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
14 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
1answer
47 views

Galleryview-Differentiate touch and swipe

I have a gallery with imageviews. I have set a ontouch event on gallery where i can drag the image from gallery and place it some where else. I am able to drag it, but as i am doing it in onTouch ...
0
votes
0answers
44 views

Android expand view ontouch of button

i want to change the view height dynamically like exapnd and collapse and also the position(y) of button should be change ..its like moving the button and according to that exapnding view.. my code ...
0
votes
1answer
58 views

Android OnTouchEvent: Debugging InputEventConsistencyVerifier messages

I have a layout configured with gesture listener for OnTouchEvent(). The layout contains a listview and I am using gestures to capture row id of the listview. I have the following code - ...
0
votes
0answers
24 views

code not reaching onTouch listener

How come this code doesn't reach the onTouch function in the code? Obviously because I have a while loop that's where the code is holding up, but I thought these lines: ...
0
votes
0answers
91 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
30 views

Prevent OnTouchEvent on siblings

How do I block onTouchEvent from a view's siblings? I have a ViewGroup with a custom button in it. When the button receives an OnTouchEvent, I want to block further OnTouchEvents from going to the ...
0
votes
0answers
25 views

get current view in a ACTION_MOVE Eventi in onTouch Method

I'm quite new in programming android. I have a problem with onTouch method, this is my implementation: public boolean onTouch(View v, MotionEvent e) { switch (e.getAction()) { ...
0
votes
0answers
43 views

Pass touch event from parent to CurlView

I'm using the fantastic harism page curl[1] in order to create an Android magazine, which pages are layouts. I have one page at the moment I want to flip, and I was able to convert the layout to a ...
-1
votes
0answers
50 views

draw line through finger but not smooth

i have made paint application and i stuck with draw a smooth line . i have draw line but it is not smooth. i have search so many ways to draw smooth line but working properly. my class is here ...
0
votes
2answers
46 views

Android Touch EventListener firing Callback more than once

I have attached a touch event listener with an ImageView object, imageview_obj.setOnTouchListener(new View.OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { ...
0
votes
0answers
30 views

Draw with ontouch based on menu selection

I have three menu items: Line, Circle, and Rectangle. I want to set it so that depending on the menu item selected, that shape/line is drawn when the user drags their finger across the screen(aka ...
1
vote
0answers
124 views

Workaround to Android SurfaceView touch lag

I've finished programming a functional Android game, but I don't know where to look to fix touch lag: Anytime the screen is touched, the framerate drops in half. My code is basically a copy and paste ...
0
votes
0answers
41 views

Is there an equivalent for dispatchTouchEvent() from Activity in Dialog or DialogFragment

I need to intercept all touch events in the application to monitor for a custom activity time out. Currently I use dispatchTouchEvent() in my activities but this is not called if I have a dialog on ...
0
votes
2answers
32 views

If i keep the screen pressed, I change the activity, can i get the motion event for action_up in the second activity?

I have an application, where i have a video player, with videos. If i keep my finger on the screen for more than 0,4 seconds, it finishs this activity, starts the recorder activity, and automatically ...
0
votes
1answer
73 views

Draw rubber band line with an ontouchevent

Ok, I'm trying to make a program that utilizes a linedrawview. When the user starts a touch event(action DOWN), it gets the current x and y and stores them in variables. Then when the user drags ...
0
votes
0answers
18 views

How to get row position via onTouchEvent?

I have figured out that when you call OnTouchEvent on ListView, OnItemClick is not called. My problem is that I would like to know the row position when I click on ListView. I have used onTouchEvent ...
0
votes
0answers
52 views

Android issue with passing a parameter to OnTouchEvent method within a same class

ive got some issue with passing arguement into that method, first some code public class MyView extends View { private Paint paint; private Path path; private boolean state; public MyView(Context ...
1
vote
1answer
66 views

Catch onTouch or onClick event from View added by WindowManager in Android

I've been stuck on a problem for a few days now and my Google searches started to run dry of possible solutions. I am trying to make a class that adds a View and receives onTouch events or onClick ...
0
votes
1answer
200 views

Trigger click event by dispatchTouchEvent doesn't work?

I want to make google map v2 infowindow to be a life view, so I wrap SupportMapFragment in custom RelativeLayout like this: R.layout.info_window: <?xml version="1.0" encoding="utf-8"?> ...
0
votes
1answer
77 views

Identify triple tap on custom view

I want to draw circle when user tap on custom view, and based on tap count circle color changes. Single Tap : YELLOW CIRCLE Double Tap : GREEN CIRCLE Triple Tap : RED COLOR => Problem is that, i ...
0
votes
0answers
45 views

Android multitouch weirdness

I've set out to implement simultaneous image zooming and dragging. The idea was to drag with the first pointer down, and use the second pointer position to determine zoom factor. So the first pointer ...
0
votes
0answers
40 views

Android - Increase the sensitivity of the on touch pinch

Hello I've successfully create an android application that detect pinch and zooming using the scale from the pinch. But the problem now is the sensitivity, sometimes when I want to zoom out and zoom ...
0
votes
1answer
67 views

Getting distance between android ACTION_DOWN and ACTION_UP events

I want to get the distance between the point where a user presses the screen (ACTION_DOWN) and where they release it (ACTION_UP). This is to be able to move the bitmap image the same amount (even if ...
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
1answer
70 views

jQuery closest element that's not self

Trying to use document.elementFromPoint() during a touchEnd event. It's working correctly, in that it's showing the highest visible element, but the problem is that I'm transforming the element that ...
0
votes
0answers
32 views

javascript touchend if element is over another

Confused on the best method to measure if an element is over another element (visually) during a touchend event. Essentially I'm implementing a touch-friendly drag and drop. I've seen a little bit on ...
1
vote
2answers
124 views

Android how to drag imageview in relativelayout and then bring it back to place

I'm trying to make an imageview draggable using onTouchListener. This is the code i have so far for the drag switch (ME.getAction()){ case MotionEvent.ACTION_DOWN://IF USER PRESSED ON THE IMAGE ...
0
votes
1answer
175 views

VelocityTracker giving random seeming results

To get a better understanding of how views work, I'm trying to make a RelativeLayout that I can drag around and fling. The idea is to capture onTouch events, set the layout parameters of the ...
0
votes
4answers
101 views

play sounds on touch on image

am developing an application which play sounds when user touches on a image. i create my own sound file. in this case i have 3 doubts, In which folder i need to place sound file.?? which method is ...
1
vote
0answers
453 views

Workaround for (Android WebView JellyBean -> Should not happen: no rect-based-test nodes found) not working for me

I tried sra's workaround in a class that extends WebView. Unfortunately I am still seeing this error. I verified that I am in fact using MyWebView by popping a Log.i(...) into MyWebView.java: ...

1 2 3 4 5 10