Question

I would like to implement onfling (or some similar swipe) in listview in each and every item in list. If I swipe that particular item it should display three buttons next to the name.

Is there any idea to implement this.

Was it helpful?

Solution

I have implemented this with the help of gesture detection:

gestureDetector = new GestureDetector(context, new MyGestureDetector());
gestureListener = new View.OnTouchListener() {
    public boolean onTouch(View v, MotionEvent event) {
        return gestureDetector.onTouchEvent(event);
    }
};
mList.setOnTouchListener(gestureListener);

OTHER TIPS

Use EfficientAdapter rather than listview. Using which you can set theonFling event and override it to your needs

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top