OnSwipeTouchListener not found

234 Views Asked by At

I'm trying to work on Swipe Gestures in android. And to swipe below is the code

viewid.setOnTouchListener(OnSwipeTouchListener(MainActivity.this) {
            override public void onSwipeTop() {
                 Toast.makeText(MainActivity.this, "top", Toast.LENGTH_SHORT).show();
            }
...

        });

But, OnSwipeTouchListener is not found in kotlin. What to do ?

0

There are 0 best solutions below