Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
2answers
22k 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 ...
5
votes
3answers
84 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
2answers
5k views

ANDROID - Image in Canvas with touch events

Seems simple, but yet im 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 ...
5
votes
2answers
3k 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 ...
4
votes
2answers
467 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
2answers
2k 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, ...
4
votes
4answers
4k 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 ...
3
votes
1answer
212 views

How to Handle TouchEvents for Child View(CustomView) in Parent View (ScrollView)?

In my app i am using ScrollView for scrolling the ImageView, and i will add one customview dynamically to that ScrollView overlay of ImageView, i have onTouch events for customview. after adding to ...
3
votes
3answers
497 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
1answer
1k 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" ...
3
votes
2answers
900 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 ...
2
votes
1answer
244 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 ...
2
votes
1answer
469 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 ...
2
votes
2answers
589 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 ...
2
votes
1answer
761 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; ...
2
votes
3answers
619 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
2k 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.. ...
2
votes
3answers
2k 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 ...
2
votes
1answer
387 views

OnTouchListener, ACTION_UP fires automatically after 30 second timeout

Hey everyone, 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 ...
1
vote
2answers
40 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
vote
2answers
71 views

Can we give both onTouchListener event and onClickListener on a single text view?

Can we give both onTouchListener event and onClickListener on a single text view...if yes can I have sample code for it.. Thanks Ali Yes thank you friends..it works!!! But there is a small issue I ...
1
vote
1answer
70 views

Separate onTouchListeners for a view and its parent

I have a ListView in Android and I would like to have onTouchListeners for the row views and the parent ListView itself. I'd like to respond to single taps and long presses on the rows individually, ...
1
vote
0answers
90 views

MotionEvent.ACTION_UP is not working

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 ...
1
vote
1answer
127 views

Scrollview and touch listener

I am facing a problem. I have a ScrollView in my application and I have to drag and drop a TextView with the help of a touch listener. The problem is when I drag a TextView using the ...
1
vote
1answer
100 views

Listview with onTouchListener

I have a listView. In that listView i have implemented onTouchListener. Every things work fine, but when list is Scrolling , on tapping on the list , the list should stop(like normal android ...
1
vote
2answers
73 views

keep ontouch event when view is removed and add

I have a view in a linearlayout. When the view is longpressed the view will be removed from this linearlayout and placed, on the same position of the screen, to a relative layout. On this way a can ...
1
vote
2answers
86 views

Android Touch Problems

i have a SurfaceView and i want to recognize the MotionEvent Action_Up, but only the Action_Down event is triggered. Also i want to recognize another touch, while the first finger is still on the ...
1
vote
1answer
61 views

Android frequency of onTouchListener?

I'm developing an app that essentially is Paint style. The user touchs the screen and can draw images. However I would like to measure the speed of the user's movements. At the moment I take the ...
1
vote
1answer
76 views

query regarding touch coordinates on an ImageView in Android

I have an image in ImageView. I need to know the exact (x,y) coordinate of the image when I touch the image. I also want to draw a circle on the touch place. Given below, is the code I use. I have ...
1
vote
2answers
334 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 ...
1
vote
0answers
45 views

OnTouchListener receives oscilating touch points

I have an activity where i set an OnTouchListener to a View (see code below). It should translate the View horizontally a bit until the GestureDetector kicks in and does something. The code so far is ...
1
vote
1answer
58 views

Detect when a user moves off of a button in Android

Is it possible to detect anytime a user moves their finger off of a button after they have been pressing down on it? I have determined that onTouchListener will get an action when the user moves off ...
1
vote
0answers
341 views

imageview don't dispatchTouchEvent

Hello guys I want to change image, that i get from web url, in my ImageView when I touch the left or right of the screen, I tried but I get the error about touchlistener dispatchTouchEvent. using a ...
1
vote
1answer
280 views

Android: catch MotionEvent across activities

I have two activities A and B. I would like to have one touch event MotionEvent.ACTION_DOWN caught in A, while still holding down, launch B, then having the release event MotionEvent.ACTION_UP be ...
1
vote
1answer
134 views

Android OnTouch events numerous Objects

ok I'm playing w/ ontouch events extending a view. what I've done is made a circle on touch.. the cirlce will follow as you move. As you move another circle is made and will sit in the postion ...
1
vote
3answers
268 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 ...
1
vote
0answers
69 views

Control animation by touch

I have made a spinning disc which rotates on its own centre point by using: r = new RotateAnimation(ROTATE_FROM, ROTATE_TO, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); It ...
1
vote
3answers
106 views

Creating an interface in Android

Can someone walk me through the best way to do this? I want to make an interface that extends OnTouchListener. Instead of one meathod called onTouch(View view, MotionEvent e) i want 3 meathods; ...
1
vote
2answers
281 views

How can i maintain ontouch events handled by a widget even if touch coords are not inside the widget anymore, in android

Sorry for the complex question let me explain. I've created a custom widget that handles some ontouch events. What i want to do is when i start a touch event on that custom widget (onDown) i want that ...
1
vote
1answer
322 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 ...
1
vote
2answers
858 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 ...
1
vote
1answer
239 views

How to make special zone for invoke on touch event?

I have next UI in my program: ui. I want to handle finger swipe event on set of the buttons, of course, without losing the ability to click on the button. How to do that?
1
vote
2answers
101 views

How do you make something work after two clicks

I am trying to make an application for android and I think I need to make the program get one (X,Y) value for one point and then another after another click so that way I can draw a line between the ...
1
vote
3answers
371 views

Disabling layer under SlidingDrawer in Android

I've found a few questions on this topic and i've tried the solutions, but I can't seem to get it right. I have a TableLayout as the first child in a RelativeLayout and a SlidingDrawer as the second ...
1
vote
2answers
166 views

Android, peculiar TouchEvent scenario to handle

Ok, so in creating a game in my spare time, I've been completely stuck when trying to code around the following scenario: I want to capture tap events (TouchEvent.ACTION_DOWN), and then in 500ms ...
1
vote
2answers
85 views

Replacement for MapView's OnLongPressListener

I have a mapView and I trying to capture an event when I hold my finger on the map. The event similar to this one is "onTouchListener" but I want to hold the finger a couple of seconds before the ...
1
vote
3answers
235 views

How can I drag a imagebutton in android

I'm using ImageButton's in my application. By using onTouch event and onTouchListener I'm responding to the touch events. Once the touch event was completed I'm just displaying the ImageButton at ...
1
vote
6answers
1k 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 - ...
1
vote
0answers
327 views

two views ontouchlistener same area how to?

I have a two ImageView. 1.ImageView zomeImageMoveable : should zome in,out and moveable. 2.ImageView zomeImageFixed : show zome this is guide line. i want this two views work same touch. { ...
1
vote
1answer
937 views

Android: fling detection on ListView with complex rows

Dear Android hackers, I am attaching a gestureListener recognizing flings to a ListView. The rows of the ListView consist of a LinearView and some TextViews. Unfortunately, the fling is not detected, ...

1 2 3