Android interface to define a callback to be invoked when a view is touched.
1
vote
2answers
301 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 ...
5
votes
3answers
470 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!!
2
votes
2answers
615 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
260 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
692 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 ...
0
votes
3answers
254 views
Change a value smoothly increasing in speed by holding down a button
I have been steaming over this one a few days now. I try to have a selector for a big range of numbers... within int-limits. You ought to hold down a button and the value should change slow and the ...
7
votes
3answers
4k 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
2answers
2k views
onTouch override - error message in Eclipse
I'm using code like the below to implement a multi-touch pinch in an Android app. I saw code examples just like this one several times on the web, so I was puzzled to find that Eclipse constantly ...
0
votes
2answers
975 views
Interesting android touch issue
The problem that i am having is I am using a touch listener for the onTouch event it seems that the touch is being called more than once when i just touch it once.
The following is my code
final ...
0
votes
0answers
273 views
Adding Map touch event listeners to MapView in mobile flex project using googlemaps
I am implementing google map related flex mobile application using flashbuilder4.5 in this application I am using javascript file and I am generating the google map and remaining zoom in and zoom out ...
1
vote
0answers
135 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 ...
0
votes
2answers
1k views
onTouchEvent in dialog
I have implemented button's onLongClickListener in Android Dialog which auto-decreases number using timers. Here is the code
myIncreaseTimer = new Timer();
final Runnable runnable_decrease = new ...
4
votes
2answers
3k 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 ...
0
votes
1answer
503 views
Android: Can I lower the latency of onTouch?
I'm working on an app that requires high accuracy touch handling. I want my OnTouchListener to receive as many onTouch events as possible so I can see exactly where their finger went. Is there some ...
2
votes
2answers
683 views
Issue in OnTouchListener for ImageView
I have set OnTouchListener to an image view. I want to do two different actions when user press down the image and also when press up the image. But always I am getting press down event as ...
1
vote
0answers
274 views
android animation doesnt work in onTouch
I have these to simple lines in my onCreate method:
ll = (LinearLayout) findViewById(R.id.layout);
a = Animations.outToRightAnimation();
I've created a button with onClickListener:
...
0
votes
1answer
463 views
imageview like a slideshow
Hello guys I want to use a ImageView as a slideshow, that touch you on the right of the screen display the next image and if the touch is on the left show the previous image,
I already tried to ...
1
vote
1answer
269 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
503 views
ImageView doesn't dispatch TouchEvent
I want to change the image (that I get from a web url) in my ImageView when I touch the left or right of the screen. I tried using a TouchListener but I get an error about dispatchTouchEvent.
Using a ...
1
vote
1answer
98 views
OnTouchListener weird bug
When I use the OnTouchListener it only works if I add a command that says to do something like:
tv.setText("");
For example:
drawView.setOnTouchListener(new View.OnTouchListener() {
...
0
votes
0answers
246 views
Error: Ontouchlistener not working?
I created an application, I want to view my title bar, when I touch the emulator screen for only one time. So I used ontouchlistener but it didn't work. I want to show my title bar only on touch.
...
1
vote
1answer
1k views
Android onfling prob
I want to add a fling action on a LinearLayout. I have used the following code for this purpose.
public class NewsActivity extends Activity {
..........
...........
private static final ...
0
votes
1answer
1k views
android implement both touch listner and long click listner on textview at the same time
I added both ontouchlistner and onlongclicklistner to a textview. But now everytime onlongclicklistner is invoking. Touch listner is not invoking. I want to invoke ontouchlistner on touch and ...
0
votes
1answer
251 views
OnTouchListener in custom dialog don't work
I have an an activity called GameViewUI. In this activity I have this method:
int DIALOG_GAMEOVER_ID = 1;
@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case ...
1
vote
1answer
1k 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 ...
-4
votes
1answer
1k views
Android - How to detect a single tap on a LinearLayout?
I have a View and I need to detect a single tap on a LinearLayout.
I don't care about movements, All I want to detect is a single tap.
Basically a touch detection just like the touch detection on ...
4
votes
1answer
560 views
Android : What use is MediaController's AnchorView?
I would like my MediaController to hide only when the user touches only the bottom half part of the screen, because i have some buttons on the top part that need to be accessible with one click.
That ...
0
votes
0answers
328 views
Extending ListView onTouchListener
I don't know if I simply couldn't find the class, but I need to do something more with the TouchEvent on a ListView.
I tried creating another OnTouchListener but by setting it on the ListView all the ...
1
vote
1answer
358 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 ...
0
votes
1answer
2k views
Implementing my own OnTouchListener
I would like to create my own OnTouchListener than i would like to encapsulate it to a .jar file for making it reusable.
This is my specific OnTouchListener:
public class TouchableView extends View ...
0
votes
2answers
4k views
Implementing OnTouchListener on LinearLayout - Android Development
public class UnitConverterActivity extends Activity implements OnTouchListener {
/** Called when the activity is first created. */
LinearLayout mLinearLayout;
@Override
public void onCreate(Bundle ...
2
votes
1answer
660 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
2answers
2k 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 ...
0
votes
2answers
679 views
Android onTouchListener stops receiving events when finger is moved up
I have a custom view with the following OnTouchListener assigned to it in my activity:
private OnTouchListener MyOnTouchListener = new OnTouchListener() {
public boolean onTouch(View v, ...
2
votes
4answers
1k 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
3answers
5k views
Android :: OnTouchListener && OnClickListener combination issue
Problem description:
I have a TextView on a RelativeLayout and I want to color it red when the user touches it, and go on another page when he clicks on it.
So I tried to set an OnClickListener to ...
1
vote
1answer
2k views
How can I use onTouchListeners on each word in a TextView?
I would like to assign onTouchListeners to each word in a TextView. (Not to link to something on the internet, but just to continue the game logic inside the app). The general action of my game at ...
1
vote
1answer
1k views
Ontouch multitouch zooming in Imageswitcher?
I am trying to enable pinch-zooming on an imageswitcher. I am stuck right now in how to declare the imageview in the ontouch method. I realize that the ImageView i = (Imageview) v is incorrect, I just ...
1
vote
2answers
1k views
onTouch event problem
In my activity, I have a ScrollView with an OnTouchListener.
This scrollView contains some imageViews.
The problem is that when I touch an imageView, the onTouch(view,event) function of the ...
0
votes
3answers
1k views
Detecting if a MouseEvent from onTouch is inside a circle drawn to the canvas of a custom view.
I'm trying to start with an android application and before that I have a need to do the following thing :
I have a class extending from the View class and Implementing the View.onTouchListener ...
1
vote
3answers
162 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
917 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
2answers
991 views
Android ACTION_MOVE Threshold
I'm writing an app that involves writing on the screen using one's finger, or eventually a stylus. I have that part working. On ACTION_DOWN, starts drawing; on ACTION_MOVE, adds line segments; on ...
3
votes
1answer
1k 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
1answer
1k views
Get selected item when double click on listview item
Here is the code to display listview items and onclick listener action.
ListView list = (ListView) findViewById(R.id.list);
ArrayAdapter<CharSequence> adapter = ...
0
votes
0answers
2k views
OnTouch with Listview
I am using the onTouchListener with listview where i am using the motionevent Action_up,
how will i be able to make the item in the listview where the Action_up event is performed.
my code is as below
...
0
votes
1answer
117 views
Do i need to start and resume the OntouchListener?
I have attached the OnTouchListener with ImageView control, now my question is do i need to start and resume the listener (if possible) to save the resources, like we do in the case of other sensor ...
0
votes
0answers
472 views
How can I move my surfaceView and make it stay at the new position?
I have a surfaceview on which I draw a few rectangles, like a bar chart. When this chart grows it gets to big for the screen. Since I can't put it inside a Horizontal scrollview I have added a ...
2
votes
2answers
7k 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 ...
0
votes
1answer
199 views
Unexpected application shutdown
I have tried to launch this code, in order to print lines onTouch. The code contains no error, but when i launch it...the emulator shutdown unexpectedly. Can you help me figure out the problem?
...