The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
5 views

ACTION_MOVE not being triggered on tap-and-hold

I'm trying to implement a means to detect a tap-and-hold on Android, with the result that a method will be called repeatedly until the user lifts their finger from the screen. The issue I'm having is ...
0
votes
1answer
24 views

WebView with swipe Gesture

I have a page with its first part containing animations. when the user swipes, the animation goes and a webview appears. On swipe up, the webview goes and the animations again appears. since the ...
0
votes
0answers
19 views

flip finger load next week view

am using TabActivity. in my tabhost an activityGroup is calling. because under one tab i need to load more than one activity. so i use activityGrop.. my problem is that i need to show a week view in ...
-1
votes
1answer
38 views

how create a week view using GridView similar to google's calendar application [closed]

i need to create a my week view using grid view.. which is similar to google's calendar application. in google's application when we flip finger on the screen the next week will be loaded.. how this ...
0
votes
1answer
75 views

prevent click event in webview in tabs when scrolling

I am using ViewPager Extension to make my app have tab functionality. There are two tabs in my app we named tabA and tabB here. tabA includes a webview component and tabB includes a listview. Now, I ...
0
votes
0answers
27 views

How to combine automatic and fling image switching

I'm trying to achieve the functionality of automatic image change via ImageSwitcher combined with user fling image change via GestureDetector. Maybe this should be achieved by using some other ...
0
votes
0answers
34 views

How to use GestureDetector for IME keyboard

I am developing an IME Keyboard application by modifying the Softkeybard sample from Android. As the GestureDetector is deprecated the word suggestion no longer works. The following is my code. which ...
0
votes
0answers
91 views

Android GestureListener DoubleTap

I'm trying to learn how to use android's Gesture Listener to clean up some of my coding but my brain doesn't seem to wrap around it at the moment. I want to enable a double tap event whereby if ...
1
vote
0answers
143 views

Implement Swipe function in WebView and call a Javascript Function via a Javascript Interface

I want to implement Swipe Features in my WebView App and call functions in the Javascript of the HTML/Javascript App when a swipe is made. According to the answer of this problem: How to detect a ...
0
votes
1answer
291 views

Android GestureDetector with SimpleOnGestureListener within SurfaceView

public class GameActivity extends Activity { private static final String TAG = "GameActivity"; . . . @Override public boolean onTouchEvent(MotionEvent event) { Log.d(TAG, "+ ...
0
votes
0answers
88 views

How turn on zoom in webview when I have a custom onScroll and a custom onFling

I have a default webview with a custom abstract OnTouchListener that call a custom GestureDetector that implements SimpleOnGestureListener. In this class I overrode onFling to handle some ...
0
votes
2answers
217 views

android change views on swipe

I'm looking for a way to change the content of TextViews when the user swipes the layout holding those Views. My goal is something like that: I'm trying to do this with a ...
1
vote
2answers
427 views

GestureDetector in libgdx

I am new in libgdx. I have the following problem. I want to do pinch zooming for my game. For that I have GestureDetectorListener class in my GameStage. In GameStage I have the following code for ...
0
votes
0answers
38 views

GestureDetector Quadruple/Octuple Tap Detection Problems

I am making an android app that is rather touch intensive, and may interfere with the users screen. Therefore I want to make sure the user wants to make an action before processing it. So instead of ...
0
votes
0answers
226 views

Android SimpleOnGestureListener() - onDown return false when onLongPress

I am using a SimpleOnGestureListener in my WebView to bring up the menu in my Activity. It's a full-screen activity and I would like a way to show the menu for devices that don't have a hardware menu ...
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
146 views

x and deltax parameters in libgdx GestureDetector pan callback on Android

Gdx.input.setInputProcessor(new GestureDetector(new GestureListener() { @Override public boolean zoom(float x, float y) { return false; } @Override public boolean ...
1
vote
1answer
121 views

After converting MotionEvent to position, how to determine which list item was referred to in an expandablelistview

I have an ExpandableListView, with a custom adapter, and in my gesture detector I am trying to figure out how to find the list item selected by a gesture. class MyGestureDetector extends ...
0
votes
0answers
67 views

android can i use velocityX, velocityY in onScroll method

I am rotating a circle using OnTouch method(MotionEvent.ACTION_MOVE, MotionEvent.ACTION_DOWN). It is rotating until I scroll. But I want that my circle rotates when I stop scrolling. I have tried to ...
0
votes
1answer
257 views

Unable to apply gesture detector on multiple images in android

I want to dynamically add multiple images from gallery, and then move, zoom and rotate those. By following this tutroial, i used ScaleGestureDetector, RotateGestureDetector, MoveGestureDetector. ...
0
votes
1answer
104 views

How to control moving View over another View?

I managed to move red LinearLayout over another LinearLayout usign TranslateAnimation. I indeed control start of animation, but not like in YouTube app or other similar apps as I have to wait until ...
0
votes
0answers
152 views

Android trouble using GestureDetector for onFling event

I have an Activity in which there is one ImageView that contains an element (taken by a list of images). In the Activity there are also two buttons: one(forwardbutton) for going to next element in ...
0
votes
1answer
101 views

How to implement a zoom in method in a View?

I Have created a guidance application which consist a map. This map is drawn dynamically using the data from the database.[rectangle coordinates] To draw the map i have used a View class and overriden ...
0
votes
0answers
163 views

How to make a swipe gesture for all the screen in android

I would like to make a gesture that the user can change between different content in an activity with the detailed informations of a listView. The list view in embedded in a fragment. The detail ...
2
votes
0answers
97 views

OnFling and other methods don't work on TextView within ListView

I need help... :-) I have a custom adapter for my ListView. The items are TextViews. I want to be able to handle onSingleTap, onFling and all other events on every TextView. But only onDown event ...
3
votes
0answers
242 views

Gesture Detection in ListFragment

I have a ListFragment that I populate with a ContentProvider. I need to attach a gesture listener to each of them so that when the user swipes to right, the item is removed from the list. Below is ...
0
votes
2answers
951 views

Touch event handling on android parent and child custom views

today I got a problem with touch event handling on android custom views.In this case i have created parent view call weekview and chiled call weekdayview.i want implement touch event like ...
0
votes
0answers
229 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 ...
0
votes
0answers
243 views

Infinite scroll canvas in android custom view

I have created android custom view.Here canvas is lager than screen.I need only vertical scrolling.I used GestureDetector and Scroller to scrolling canvas.But I cant stop infinite scrolling my canvas. ...
0
votes
2answers
335 views

switch between doubleTap and Swipe

I have a RelativeLayout I am putting a TouchListener into using GestureDetector. I have already done and can detect double tapping but how can I add a swipe event in the view also? private void ...
0
votes
1answer
1k views

How to get GestureDetector working correctly

I have this code so far in my Activity: private class SwipeGestureDetector extends SimpleOnGestureListener { // Swipe properties, you can change it to make the swipe // longer or shorter and ...
-1
votes
1answer
106 views

Add an event to GestureDetector

Actually i have GestureDetector for a WebView, it's works, i can change the page to load by left and right swipe but zoom, pan and active links has stopped to work. This is the listener: private ...
1
vote
1answer
185 views

Drag & Drop for older Android not precise

So I'm attempting to make a "magnetic poetry" type application. Users will move various Button widgets on the screen. I am using a Button widget since it is the closest to the look of the magnet, ...
0
votes
1answer
162 views

Android SimpleOnScaleGestureListener combined with OnDoubleTapListener

How can I combine SimpleOnScaleGestureListener and OnDoubleTapListener? If I do this in my onTouchEvent method: if (!scaleGestureDetector.onTouchEvent(ev)) { ...
5
votes
1answer
1k views

NullPointerException in GestureDetector.onTouchEvent

I have an activity using a GestureDetector in onTouch. Inside my layout, I also have a view implementing an onClickListener. On Android ICS, I get a NullPointerException while handling the TouchEvent. ...
2
votes
1answer
3k views

Set GestureDetector to all child views

I would like to add a GestureDetector to all views (view groups) of an activity without assigning it manually to every single view. Right now onFling() is only activated when swiping over the ...
0
votes
1answer
393 views

android detect if user swiped

I have a viewpager with webviews, and I want to detect if a user have swiped at all. I mainly want to keep count of how many times they swiped between views. The problem with keeping up with the ...
2
votes
2answers
284 views

Why GestureOverlayView is so slow?

I detect swipe gesture on 2 views with different methods: first is via GestureDetector, and the second is GestureOverlayView (I need this because the 2nd view is the GridView and GestureDetector does ...
1
vote
1answer
584 views

Only intercept double taps

I currently have a GestureDetector on a webView that I want to respond to double taps. However, the webView then ignores all single taps - presumably I have overridden this behaviour too. I am ...
0
votes
1answer
785 views

Android OnGestureListener onScroll MotionEvent

I have a problem with the onScroll event of the OnGestureListener. the method signature is as follows: public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY); ...
0
votes
2answers
95 views

Layout android activity

I would know if there is the possibility to create a new Android Activity with a different layout comparing to linear layout, table layout, relative layout ect... My goal is to create an activity ...
0
votes
1answer
429 views

OnFling and ImageView not working correctly

So I'm trying to get the imageview component of my page to change on swipe. I'm not even able to pick up the swipe gesture and forward it onto the Gesture Detector. In the OnFling method, I'm not ...
0
votes
2answers
392 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 ...
2
votes
1answer
416 views

GestureDetector within a TYPE_SYSTEM_OVERLAY

I have created a TYPE_SYSTEM_OVERLAY and i wish to capture finger/touch events on this overlay using a service. The overlay works fine, but the problem is it cannot capture touch events when i try to ...
1
vote
3answers
1k views

Android - GridView - GestureDetector doesn't work

I have a problem with detecting fling gestures in my app. My layout consists of a GridView, couple of TextViews and buttons. I implemented OnGestureListener: public class MyActivity extends ...
1
vote
1answer
870 views

SimpleOnGestureListener never goes in to the onFling(…) methode

Hi SimpleOnGestureListener dosen't work in my application this is how I'm implementing it. Maybe you can spot what is wrong. The thing is debugging shows the application never goes in to the ...
0
votes
2answers
240 views

onFling() 2D Animation Issue

I'm trying to run a very simple 2D animation when I fling an image view. I have 2 activities involved in this. The GameCanvas @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float ...
1
vote
1answer
620 views

How to make a View follow my finger using onScroll and GestureDetector - Android

I have a RelativeLayout with a TextView in the middle. I've got it to detect onFling, onDown, and onScroll events using SimpleOnGestureListener(). I would like the TextView to follow my finger around ...
0
votes
1answer
781 views

Use of onTouchEvent in GestureDetector

I am quite new to android. I was learning the use of GestureDetector and wasnt able to understand the use of the following snippet in the code- public boolean onTouchEvent(MotionEvent event) { if ...
1
vote
0answers
635 views

Android gesture detection and recognition

I'm trying to add "fling" gesture detection in simple gesture recognition source code that developer has(on this site). and this is the code: public class GestureMix extends Activity implements ...

1 2