0
votes
0answers
56 views

how can i use onlongclick on linearlayout which has pager and listview?

I'm try to make an app with linearlayout. and this linearlayout has small pager and listview. however, i tried to use long click method on linearlayout. just like below. LinearLayout mainLayout = ...
0
votes
1answer
266 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: ...
2
votes
4answers
317 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 ...
1
vote
1answer
807 views

Using OnTouchListener and OnLongClickListener interferes with eachother

I have got this button which uses onclicklistener and onlongclicklistener, but also a button which uses ontouchlistener... the point is button 1 is 0,1 second pressed, button 2 is 2 seconds pressed, ...
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
2k views

OnTouch and OnLongPress work together

I impleme public class TextViewer extends Activity implements OnTouchListener and tv.setOnLongClickListener(itemLongClickHandler); tv.setOnTouchListener(this); But I only the second one works. ...
-1
votes
2answers
2k views

OnLongClickListener on childView disables OnTouchListener on parentView

I have an AbsoluteLayout which has an OnTouchListener. Inside this layout there is a much smaller LinearLayout positioned dynamically. The OnTouchListener works as expected. Now the problem comes ...