Android interface to define a callback to be invoked when a view is touched.
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 ...
2
votes
0answers
149 views
MapView custom onTouch never called after zoom controls
I have set an OnTouch listener on a mapView that show a toast. Everything works great but if i put this code
map.displayZoomControls(true);
map.setBuiltInZoomControls(true);
then the onTouch is ...
2
votes
0answers
431 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
0answers
81 views
How can i handle setOnScrollListener for Custom View android
I have a list view where i created custom adapter. I am displaying a button when i swipe right, so i have setOnTouchListener. My problem is i want to remove the button and display another button when ...
1
vote
0answers
138 views
how to drag and drop SurfaceView smoothly?
I have tried to drag and drop SurfaceView(camera preview) using SetOnTouchListener and MotionEvent.ACTION_MOVE but I am not getting the smoothness and even it is blinking like video preview is not ...
1
vote
0answers
117 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++) {
...
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
0answers
83 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, ...
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 ...
1
vote
0answers
518 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
0answers
86 views
Limit TextView boundaries to ImageView upon user touch
I have an imageview which only takes up a portion of the screen. And I have a textview on top of the imageview. When the user touches the textview, they can drag it to where ever they want on the ...
1
vote
0answers
77 views
Android: Validating the EditText
I am having 2 edittexts ans 2 imageviews and i want that the intent on the button click only works if both the edittexts have some value in it and and both the imageviews have been touched.the problem ...
1
vote
0answers
25 views
ImageView OnTouchListener not giving item id
The simplified onCreate code below effectively creates dynamically a matrix of ImageViews on the basis of data in a file.
I (think) a listener is attached to each ImageView item. However, when I try ...
1
vote
0answers
101 views
Clickable map image to select an province
I have a image of a Dutch map, now I want to click on a province and then go to the next screen. To give you an idea:
I have searched on Google and Stackoverflow and read something about ...
1
vote
0answers
273 views
onLongpress in android
I am trying out a small project where I using ontouch listener which uses the motion event. Everytime I move my finger on the screen a different sound is played. Which works perfectly without any ...
1
vote
0answers
322 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 ...
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 ...
1
vote
0answers
363 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 ...
1
vote
0answers
177 views
ContextMenu and ontouchListener android
I'm developing an application which in an specific Activity, I have a button I want to drag and drop (for this, I use onTouchListener) but otherwise, I want that the button has a context menu (press ...
1
vote
0answers
136 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
0answers
279 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:
...
1
vote
0answers
504 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 ...
0
votes
0answers
14 views
Android: Joining two points by OnTouch and follow dragging
I'm attaching two images on what I'm aiming to do.
This will be the view of canvas on Start-Up.
Now user can touch any of the points and drag vertically or horizontally to join it with other point ...
0
votes
0answers
11 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
0answers
15 views
i am getting “reacting on signal 3” on touch event
I need to make an ImageView which will simulate 3D rotation when swiping left to right, so i use this layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
0answers
29 views
OnTouchListener for list item layout not taking for inner controls
In the custom listview,I am using a base adapter and setting onTouchlistener for convertView inside getView() to get swipe for each row.
I have also a seekbar, imageview inside each listview item. ...
0
votes
0answers
12 views
Problems using gestureDetector on top of buttons or editText
I'm changing activitys by fling using gesture detectors, but if I try to swipe on top of buttons for exemple, it doesn't work.
@Override
protected void onCreate(Bundle savedInstanceState) {
...
0
votes
0answers
38 views
android swipe on ListView doesn't get the correct row
I am using the following(Android Swipe on List) code to detect swipe on listview, and I am using a CustomCursorAdapter to populate the listview from a cursor. however, when I print the value of the ...
0
votes
0answers
42 views
Android MotionEvent.getX() get different values, without moving finger
This is my first Question on stackoverflow, so please say it to me when I do something wrong =)
Im trying to turn an ImageView on the basis of finger inputs. For that Im working with the ...
0
votes
0answers
43 views
Moving an ImageView located in a WindowManager doesn't work properly
I'm trying to draw an Icon over everything on the screen (TOP MOST) similar to the chathead of new Facebook messenger
I have create a service to work in the background and based on a specific ...
0
votes
0answers
11 views
Implement onClickLisener on invisible or gone ImageView?
Implement onClickLisener on invisible or gone ImageView, is it posible?
0
votes
0answers
84 views
Android Imageview setOnTouchListener not working?
i'am using imageview on touch listener in this motion event not working why this happen any one have idea regarding this help me.
here is my code
img_View11.setOnTouchListener(new ...
0
votes
0answers
17 views
Solution Multi-Touch event
I don't know how to make a Multi-Touch event. I move two Bitmaps and everything works, but I can only move one Bitmap. Can anybody suggest a solution?
public class MainActivity extends Activity ...
0
votes
0answers
15 views
get the current view as I move on the screen with your finger
I have a problem. imagine a 3x3 matrix of integers and want to calculate the sum of the numbers (buttons) which I touch with my finger on the screen when I lift my finger
how can I do? I tried using ...
0
votes
0answers
24 views
Start Marquee Faster - OnTouchListener
I already made the textview marquee repeatedly when I touch it, but it takes like 3 seconds to start the marquee effect ! I want it to start right when I touch the textview !
Maybe I am using the ...
0
votes
0answers
97 views
Android WebView - onTouchListener stop working after scrolling page
I'm working on an application that shows images (like a slide show), when the user touches the image I want to open a web page in a WebView.
The problem that I have is how to monitor user activity?
...
0
votes
0answers
37 views
In Mono For Droid How to move ImageView when I touch it?
I'm using Mono-For-Droid. I have an ImageView and want to move it to follow my finger when I touch it and stop moving when I release my finger.
Here is my code, please advice how do it?
using ...
0
votes
0answers
20 views
How i can change the different layout of list item on fling event
I want to change the layout of listitem on which fling event is captured and wants to show new layout as aniamtion before setting new layout in the listitem. I have two question associated with it
1) ...
0
votes
0answers
61 views
Multiple-view ViewPager with onTouchListeners on all children
I have a ViewPager that is based upon Dave Smith's ViewPager container implementation [1] . The ViewPager shows about 5 children simultaneously and works as intended but I do have problems ...
0
votes
0answers
53 views
android surfaceView onTouchListener
I want to add an OnTouchListener to my surfaceView but I can't quite get it.
I tried to add the OnTouchListener in the MainActivity with
surfaceView.setOnClickListener(this);
without result. Any ...
0
votes
0answers
82 views
Moving imageview between views
I am trying to move an imageview that is inside a tablerow that is inside a horizontalscrollview. Everything is wrapped by a relativelayout. During run time, I load the tablerow with images. I am ...
0
votes
0answers
39 views
How to call MotionEvent of parent view
I have a view with relative layout in it. I am adding a button programatically to my view using this code
Button btn = new Button (this);
btn.setId(2000);
...
0
votes
0answers
183 views
Android: ScrollView Intercepting Map API V2 touch
I have an Activity that have a scrollview that countains a lot of things... one of these is a mapfragment api v2. The BIG AND TROLLING PROBLEM is when I move the map vertically, ALL the Scroll moves, ...
0
votes
0answers
57 views
Android:WebView Top,Bottom,Center position listener
I have a layout :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
...
0
votes
0answers
42 views
Multiple imageview on touch action listener
I have 4 views in the same activity. I want to move each Imageview on touch in whole screen, but it allow me to move in its width height.
Each image view's layout height and width is wrap_content.
...
0
votes
0answers
104 views
android setOnTouchListener behavior different on android 2.3 and 4.1
I use setOnTouchListener to capture MotionEvent.ACTION_DOWN and MotionEvent.ACTION_MOVE to move a view when I tap on it.
Bt works fine on Samsung S3 (4.1.1) but not works(can not capture the ...
0
votes
0answers
12 views
how touch several imageviews at the same time?
I just started android developing.
I want to set an ontouchlistener to serveral imageviews which should all be able to be touched at the same time.
At the moment i can only touch one imageview.
I ...
0
votes
0answers
45 views
How to move objects in a Gallery?
I have a Gallery and I want to move objects around the screen when yo do LongClick in an image from the gallery, but I don“t know how to do it!
I would be very grateful if someone could help me.
...
0
votes
0answers
26 views
viewPagerIndicater and onTouchListener
I have a FragmentActivity which extends SherlockFragmentActivity in that I'm using viewPagerIndicater. In my fragment I extend SherlockFragment and implement onTouchListener. I also use a Gridview ...
0
votes
0answers
83 views
Android - OnClickListener and Multi Touch
I've noticed in my app that when one finger is on a button and another finger touches down and up another button (click), the second button will not receive an OnClick event. I assume this is because ...



