Sketchware swipe exit activity

Codes used ..

Place a Add to  source directry block in the on activty create and then copy and paste the following codes....

linear1.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View p1, MotionEvent p2){ switch(p2.getAction()) { case MotionEvent.ACTION_DOWN: y1 = p2.getY(); x1 = p2.getX(); break; case MotionEvent.ACTION_UP: y2 = p2.getY(); x2 = p2.getX(); if (((y1 - y2) < -250)) { } if (((y2 - y1) < -250)) {} if (((x1 - x2) < -250)) {finish(); } if (((x2 - x1) < -250)) {  } break; } return true; }});



If u get a error saying linear 1 couldnt be resolved then change the name of , any linear to linear1 .





Comments