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 ?