Hi,
i'm using a ListActivity that contains the GestureOverlayView.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"  >
     <android.gesture.GestureOverlayView  android:id="@+id/
gestureOverlayView">
          <ListView android:id="@id/android:list" />
     </android.gesture.GestureOverlayView>
</LinearLayout>

I was able to make gestures work adding an OnGesturePerformedListener
to the GestureOverlayView, but now the OnItemClickListerner does not
work anymore:

setListAdapter(customAdapter);
ListView listView = getListView();
listView .setTextFilterEnabled(true);
listView.setOnItemClickListener(myOnItemClickListener);

i need to catch ListView OnItemClick events, how can i do?

Thanks!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to