0
votes
1answer
36 views

Issue in detacting event of listview row

I have try to create listview like iphone where if you swipe let/right it will show you delete button and if you click on row it ll goes to next activity but i am facing some issue I have issue in ...
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
1answer
610 views

Android ListView TouchListener called on scroll

In my project I have a ListView which has a touchListener in getView method from adapter for each view. My problem is that the touchListener activates when I scroll the list. How could I disable ...
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
410 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}, ...
1
vote
2answers
866 views

Android ListView - getting a number of element in the list in ListView.setOnTouchListener

I'm trying to get the list item number in the onTouch method. That is how i do it: ListView myList; ... myList.setOnTouchListener(new OnTouchListener() { @Override ...
1
vote
1answer
703 views

Listview with onTouchListener

I have a listView. In that listView i have implemented onTouchListener. Every things work fine, but when list is Scrolling , on tapping on the list , the list should stop(like normal android ...
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 ...
5
votes
1answer
3k views

Embedding ListView inside Gallery

The goal is to implement a Gallery whose adapter returns ListViews (in other words, vertically scrolling ListViews embedded in a horizontally scrolling Gallery). It sort of works after a bit of work, ...
1
vote
1answer
1k views

Android: fling detection on ListView with complex rows

Dear Android hackers, I am attaching a gestureListener recognizing flings to a ListView. The rows of the ListView consist of a LinearView and some TextViews. Unfortunately, the fling is not detected, ...
5
votes
1answer
15k views

how to implement both ontouch and also onfling in a same listview?

i have a listview and implemented onclick and also onfling.problem is when i do fling(swipe left to right), onclick event of listview is also getting executed.How to overCome this problem? how to ...