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

learn more… | top users | synonyms

0
votes
0answers
21 views

OnTouchListener for audio

I'm trying to create an Example App that play a Sound when you keep pressing a button, I mean, when you stay pressing it should sound, and when you release the button it should stop. And also if I ...
1
vote
2answers
995 views

ImageView Drag Limitation In Android

I have an ImageView in a layout and set OnTouchListener on ImageView to drag the ImageView. It's working perfectly. My problem is how can I prevent from move ImageView to out of layout range? This is ...
0
votes
0answers
82 views

Is there a way to ignore taps/clicks on the android SeekBar background

I have a custom seekbar set up so that the background progressDrawable is set to transparent. However, if you tap on the area that is trasnsparent it will still set the progress of the seekbar. Is ...
-1
votes
1answer
250 views

How to fire two listeners on the tablelayout by one click: tablerow and its cell

By using TableLayout I created a simple table and added OnClick listeners to both the table rows and the rows' individual cells. However, touching any cell executes only the cell listener and ...
2
votes
2answers
984 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 ...
1
vote
1answer
529 views

Android code to apply same double tap touch listener on two or more different custom views

How to apply same double tap touch listener on two or more different custom views? view1.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent ...
0
votes
1answer
149 views

Touch (not click) listener

Last two days I'm trying to write simple drag and drop functionality in Android API7 but all of the time I have problem. Now with touch listener. I use onTouchListener but onTouch method it's call ...
0
votes
0answers
226 views

leftMargin attribute of LayoutPrams in custom component

I have a custom component which extends LinearLayout and implements onTouchListener This component makes some changes to the graphics when onTouch fired and alters leftMargin attribute of the custom ...
1
vote
2answers
326 views

updating ProgressBar in android

Image.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { Trace(array); ..... ...
0
votes
1answer
157 views

how to Apply the Click event on extends view class in android?

Hi i want create simple apps.i use the one customclass which name like a Drawcanvas which purpose to draw runtime canvas.so i use the ontouchListener and OnClicklistener onthis. but those event can`t ...
2
votes
4answers
313 views

How to select one particular view from group of view's?

For an app I need to develop, I need to be able to select one view from ViewGroup when user long press on the view have to popup an alert dialog, from that i will select options depending on the ...
0
votes
1answer
87 views

How to unsubscribe from onTouch() event

When application is started I run a custom pop-up till a user touches the screen. When screen is touched I catch it with event onTouch() and cancel the pop-up. From this point I don't need the event ...
1
vote
2answers
161 views

Android OnClick and onTouch : Which one is better?

I am developing a android application, in which we have standard login registration pages. I like to ask about onClick listener and onTouch listener, which action listener is better for implementing ...
1
vote
0answers
326 views

How to draw the rect canvas on another view in android?

Hi I am new in android also new in Stackoverflow. I want create simple crop apps so I use the on image view and apply the on touch listener on this.when I touch on this. I draw simple and small ...
0
votes
4answers
398 views

Multi touch for different views on android

If I have two buttons in my view and I want to enable OntouchListener for that two buttons at the same time,I mean touching 1st button started one task and holding that 1st button touching 2nd button ...
0
votes
0answers
100 views

How to use onTouch event with scroll view

I have a LinearLayout and I've added onTouch listener on this layout. but when adding scrollview inside this layout , the onTouch doesn't work, why and what is the possible solution please ?
3
votes
1answer
360 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 ...
0
votes
2answers
201 views

Trying to start a new activity when the screen is touched

I'm trying to start a new activity when the screen is touched.The background is a resized bitmap. But the touch is not detected. Here's my code: public class DispCover extends Activity implements ...
1
vote
0answers
400 views

OnTouchListener irregular on Android 4.1.1 JellyBean

I am suffering a really weird problem with my OnTouchListener. I upgraded my Galaxy Nexus to 4.1.1 last night and the following code which is still working on all previous android OS version does not ...
0
votes
1answer
178 views

Detect OnTouch on AppWidget. If is it possible?

Detect OnTouch on AppWidget. If is it possible? Hello! I'm trying to create my first AppWidget for Android 2.1 in which a client may have a chance to select an item on my custom view. I'm going to ...
0
votes
0answers
446 views

android : doesn't work click event

I have simple listview. Its items are simple linearlayout with android:clickable="true" in my adapter i set OnTouchListener and OnClickListener. my part of code of getView method : ...
0
votes
1answer
163 views

Android : How to use TouchListener to react to movement across button

I'm new to Android development and I was wondering if there is a way to add a TouchListener (or any event listener) to a button such that it reacts to movement across it's area. For instance if I have ...
0
votes
0answers
248 views

Crash when using OnTouchListener on a ListView (Android)

I came across a crash in Android 3.2 when trying to test out Multi-touching with a list view. I can reproduce the exception with a simple layout containing only a ListView and less than 20 lines of ...
0
votes
1answer
131 views

Simultaneous GridView button events/determining which button has been touched

I'm having a hard time trying to figure this out. I have a gridview of 8 buttons. At the moment I'm using an onItemClickListener to trigger the buttons actions, however this produces two problems for ...
0
votes
1answer
172 views

Get touch event coordonate on an imageview

I have an onTouchListener on an ImageView and I use event.getX() or getY(). My goal is to display an image and launch a dialog or something when the user touch a particular part of my image. The ...
1
vote
1answer
337 views

Getting JUST the onTouch event (Android)

I am trying to separate a few things in here. I have a program with Imagebuttons. They have onTouchListeners attached to them. I wish touch event to be fired JUST with a touch, not with a click. I ...
0
votes
0answers
120 views

How can I move an imageview along a x position?

I have an image which I want to move along with my finger touch. For example, if my finger is in the middle of the screen, the image is going to stay on my y fixed position but will change its x ...
0
votes
1answer
253 views

android - dismiss spinner when user touches somewhere else

I have an app where the user presses a button and a custom spinner is popped so that the user can choose between nine colors. I want the spinner to be dismissed, when the user touches the background ...
0
votes
1answer
96 views

glulookat “resets” after movement (with android)

here's my problem: I'm making a pool game in android and I want to make the camera rotate freely around the center of the table. The thing is that when I stop my movement it looks like the glulookat ...
6
votes
2answers
899 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 ...
2
votes
3answers
1k views

onTouchListener for multiple TextViews inside TableRow

Up till now I have searched for hours on end and have not found any suitable solution to my issue. Am fiddling around with my android application and trying to make a Sudoku game. The TableLayout ...
0
votes
1answer
371 views

ImageView and touchListener

I try to make an imageview clickable. Actually it is clickable, so that I can call an Intent after the user touches the imageview. But I am struggeling to change the image on touch. I want the ...
0
votes
2answers
139 views

Button to change when clicked

Button onTouchLitsener does not change when clicked. I want the button to change when clicked. public class SoundActivity extends Activity implements OnTouchListener { /** Called when the ...
0
votes
2answers
449 views

How to make a Layout listener ignore views on top of it - android

I have a LinearLayout and I want to see when a user has touched it, and has released their finger. I thought I could do this by adding a onTouch listener and checking the event. This linearLayout ...
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 ...
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 ...
1
vote
2answers
849 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
933 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
283 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
457 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
409 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}, ...
0
votes
0answers
204 views

Android multiple row gallery, scrolling manually

I have a gallery with 3 rows of images. I implement onTouch(View v, MotionEvent event) to do differents actions when scrolling or clicking the image. This is my code: image1.setOnTouchListener(new ...
1
vote
2answers
681 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
247 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
137 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
309 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
68 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
365 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
157 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
147 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 ...

1 3 4 5 6 7 9