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

learn more… | top users | synonyms

0
votes
0answers
40 views

Method setAlpha() does not get called in onTouchListener ACTION_MOVE event

I am trying to change the alpha of an ImageView by moving the finger on the screen. I have an OnTouchListener and in MotionEvent.ACTION_MOVE I have put the below code. Log shows the alpha value ...
4
votes
2answers
353 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 ...
0
votes
1answer
56 views

How can I detect event while moving through buttons?

I am trying to develop a musical instrument app in android. I implemented OnTouchListener for every button, and there is no problem when I just touch one button. But when I touch a button and move my ...
1
vote
2answers
97 views

Android onTouchListener: Switch Activity On User Touch

I am new to Android development, and would like some help figuring out how to do something. I have an activity with an EditText object that I have formatted to take up the whole view, with a certain ...
0
votes
0answers
215 views

How to Handle pinch zoom in webview in side the listview in android

I have a custom listview filled with multiple webviews. When I want to pinch zoom the webview it scrolls my listview. I want to disable the listview's vertical scrolling UP/DOWN while doing the ...
0
votes
1answer
244 views

Android: Long touch on Button while MotionEvent.ACTION_MOVE

Ok... in my app i update the layout on MotionEvent.ACTION_DOWN and then i check the motion event coordinates to locate my buttons. I can show a toast when finger is released on different buttons. The ...
1
vote
0answers
118 views

Android - Set different OnTouch event on every child

Hello I'm trying to create a drag and drop view and I have succeed but I have one problem, I add my view dynamically like this int k=0; for(int i=0;i<badge_list_id.size()/2;i++) { ...
0
votes
0answers
81 views

Android onTouchEvent and identify circle shape

I am using android 2.3.3. I need to identify if user is drawn circle (clock-wise) on the screen using onTouchEvent. I can collect the points using MotionEvent.ACTION_DOWN, ACTION_UP..etc but how to ...
0
votes
1answer
174 views

How do you fire onItemClickListener when you also have onTouchListener?

I'm following this tutorial, except I'm trying to add a "touch" aspect to each of the images. So as you can see, HelloGridView is exactly the same as the tutorial: public class HelloGridView ...
0
votes
0answers
43 views

change image View ontouch

I have a database contains name's of images , I display the first image on imageView , I switched between images using ontouch up and down but that not usefull, I want to switch between images by ...
0
votes
1answer
95 views

How to set two onTouchListener to two buttons in the same layout

I am trying to make drag and drop buttons, they are located in the same xml and I created two onTouchListener for them, they can be drag and dropped, but if I move one of them, the other also moves, ...
0
votes
3answers
42 views

Make OnTouchListener update all the time

I have an Android applciation which I want it to draw circles around I used OnTouchListener. The problem is, when the users "holds" the circle in place, it doesn't update the action. How can I ...
0
votes
1answer
121 views

How to set onTouchListener on BitMap

How do I set an onTouchListener for a Bitmap. e.g pongball = BitmapFactory.decodeResource(getResources(), R.drawable.pongball);
0
votes
1answer
42 views

Looping a canvas in Android

Does anyone know how to loop this drawing of the Canvas? I want to later on add an onTouch method and get the X position. Thank you. @Override protected void onDraw(Canvas canvas) { //Canvas ...
1
vote
2answers
138 views

Drawing icon on map where it is touched

I am trying to draw some icon on the map as long as it is touched. I think I am almost there. Here is the code. package com.example.googledemo4; import java.util.List; import ...
0
votes
1answer
140 views

How to detect touch events on disabled checkbox in android

I have a layout with couple checkboxes. When one checkbox gets checked the others are set to CHECKED=true and ENABLED=false. Now I want the user to be able to tap on any of that disabled checkboxes ...
1
vote
0answers
31 views

Android redraw glitches in orientation

I am running JellyBean 4.2.1 on my Galaxy Nexus Android Phone. The following code snippet invalidates the dirty region of a circle that is being dragged by the user (in a custom View). The code is ...
1
vote
1answer
91 views

OnTouch with multitouch in android

I am havig troubles counting how much touches are being made in each "half" of the screen. When I touch in the upper side it counts correctly, and the same with the lower side. BUT, when I touch the ...
0
votes
0answers
37 views

How to create new marker on mapview when lifting finger

My map shows my current location with a marker (I've accomplished this). Now, I would like to create a new marker (indicate as destination) after I touch on the map. However, the onTouchEvent that I ...
0
votes
1answer
128 views

Android onTouch Activity New XML File Error

I have 3 XML files. The first one is for main activity. It has one button. When I touch this button, it works and it sends me to second XML file. Also the second screen has a button. Now, I want to ...
1
vote
1answer
171 views

Activity vs. View. vs. SurfaceView and interaction

I am trying to make a fairly simple Android game. I am making a custom view: I am not using any buttons, rather, I am painting pixels on screen that represent buttons. The idea is that I have 3 ...
1
vote
2answers
112 views

Add a listener to a TextView in TableRow

I'm adding TableRow elements in the flow programatically. TextView eq = new TextView(fa); eq.setId(40); eq.setText(Student.getEq()); eq.setTextColor(Color.WHITE); eq.setTextSize(12); eq.setPadding(5, ...
0
votes
1answer
61 views

Android touch event handling from DDMS

Anyone knows if there is a way to add touch events to the DDMS emulator control? Unfortunately i have no real device and i want to make some experiments over the touch events on a AVD 2.3.3 device.
0
votes
0answers
31 views

Touch events in a custom Gallery

I'm using this implementation for Gallery that recycle views: http://stackoverflow.com/a/5882944/1787773. How can I implement touch events like onFling to the child views in the gallery?
0
votes
2answers
142 views

Android: OnTouch not working

I am working on a Multi screen application in Eclispe I am trying to get the onTouch method to work. package com.example.connectfour; import android.util.Log; import android.view.MotionEvent; ...
2
votes
1answer
152 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 ...
0
votes
0answers
209 views

Drag and zoom on canvas

I'm developing a turn based strategy/rpg game. The player will use the UI to give commands. While the canvas will be used to show the game board. The UI is stored in a XML file (shipcombatui). I have ...
0
votes
1answer
265 views

Android OnTouchListener schedule a thread to position cursor

The answer posted at "In Android EditText how to get the cursor position in an OnTouchListener after it is set" indicates that a thread can be scheduled for 100MS in the future to give Android time to ...
1
vote
2answers
111 views

Alternative to make an action when pressing/realising a button, android

I want to make an application with 9 buttons for android 4.0, I need each of the buttons to call a method when pressed and another method when released. I'm kind of surprised there's not a really ...
1
vote
2answers
1k views

Change background color of items in gridview on touch

I have a gridView layout which is populated with textView elements. I have a onTouch() implementation for gridView where the cells that are touched upon need to change background color. Below is my ...
0
votes
2answers
100 views

Scrolling child view in gallery

Each item in my gallery is a custom view. One of the child's view is a gridView. When I'm scrolling the gallery everything works fine, but it wont scroll by touching the gridView. Its difficult to ...
1
vote
2answers
229 views

Android - Consume onTouch of parent view having multiple Clickable children

I have a ListView in an Activity. The ListView rows are LinearLayouts each and contain two children Views, both are clickable. The structure is like this - ______________________________ | | ...
0
votes
2answers
43 views

player only moves when screen in ACTION_DOWN or ACTIONMOVE needs to move when being touched

ok to i created an ontouchlistener class: package drop.out.Game; import android.view.MotionEvent; import android.view.View; import drop.out.Game.Model.Player; public final class ...
0
votes
1answer
309 views

ImageView inside ScrollView with onTouch() or onClick() Event

I have an ImageView inside a ScrollView. The ImageView is clickable and opens up a new Activity. Whenever I scroll through my ScrollView first touching the image (But not releasing my finger yet) and ...
0
votes
1answer
230 views

Android: Different Drag and Drop Actions onLongClick and onTouch

I want to implement two different Drag and Drop interactions with one Button. If the user clicks long on the Button, he can move the button. This is no Problem, I implemented OnLongClickListener: ...
1
vote
2answers
509 views

swipe image left and right android

I am storing two images in an array, the images come up but what I am trying to achieve is when the user swipes the screen to the right the second image comes up and when swiped left back to the first ...
1
vote
0answers
84 views

Why my animation does not stop in the right point?

In may app, I have two animations. One is growing from the bottom to the top of the screen. It is called inside my startNewAnimation() method: mSurfaceGrowingAnimation = new TranslateAnimation(0, 0, ...
0
votes
1answer
72 views

implement onTouch event in my timerproject

I have a timer i want to start when holding down a button, and reset the timer when i let go. It was possible with onClick but i cant really figure out how to use the onTouch event in this ...
1
vote
0answers
48 views

implement OnTouch listner in timer

Iam new to android and I have a problem. Im trying to create a app that when you hold down a button , a timer starts. If you let go of the pressd button the timer reset itself. It will play a sound if ...
0
votes
1answer
59 views

Android - Displaying various options on a button click

I want to design a button such that when it is clicked, I get various options, from which I finally select one. This is the same as using the concept as in text messages. For example: If we press ...
0
votes
0answers
50 views

Random lines appearing on path

I'm trying to be able to draw multiple lines on the screen that follows the user touch. This was the original question that I asked. I figured out how to make it appear as if there are multiple paths ...
3
votes
2answers
179 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 ...
2
votes
0answers
141 views

How do I exclude onTouch method when onDoubleTapEvent is being called (in a gridview)?

I needed a touch listener on a calendar grid view. It's supposed to have an onTouch method to get the data from dragging on the calendar, and an onDoubleTapEvent to delete entries. I also implemented ...
0
votes
0answers
67 views

How to highlight multiple views in one sliding motion?

I'm stuck with a problem that concerns Android Motion Events. I have a 2D array of EditTexts. These EditTexts can contain only one letter. What I want to do is to be able to highlight them as I glide ...
0
votes
1answer
162 views

Android: Pass gesture event to another view

Good Morning All, I am continuing work on my Sticky ListView, in which a specified view in a ListView will stick to the top and/or bottom as it passes by. I've accomplished this by setting up a View ...
1
vote
0answers
521 views

Extending Horizontal ScrollView to block ontouch events on childs doesn't work

I have been trying to implement a horizontal scroll view where the user selects from a list of images and it gets displayed at the centre of the screen. Originally, my problem was that the scrolling ...
1
vote
2answers
258 views

android touch listener on main layout from it's views

the scenario that I'm trying to accomplish is the following: I have the main layout - that is a framLayout, and inside it I have linearLayouts that contains different view. I want that the global ...
1
vote
2answers
215 views

Programatically execute another touch event when one touch event occures in android

I am making ImageView Drag and drop with creating duplicate instance by touching original one. I am having one horizontal-layout containg many small images. when I touch on it it creates duplicate ...
0
votes
2answers
89 views

Which is better approach for OnClick Implementation?

For implementation of onClick function which approach is better? Saving touch start / touch up coordinates and processing this values for closeness? Like, if starting point and up point close each ...
1
vote
1answer
203 views

onTouch with Multitouch and SoundPool Motion Events

So i'm making a xylophone app for android and i've run into a problem, i'm not sure how to correctly use onTouch. Right now I can press an image and play the sound, but I cannot play two sounds at ...

1 2 3 4 5 9