It does not work method start () that I have not tried all else fails. How do I solve this problem? If you can please reply capacitive. Thank you in advance!!!
public boolean onTouch(View v, MotionEvent event) {
        mX = event.getX();
        mY = event.getY();
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
             Start = mY;
                break;
            case MotionEvent.ACTION_UP:
                Fin = mY;
                break;
        }
        if (Start < Fin) {
            start();
        }
        return false;
    }
    public boolean start() {
        Text.setText("dfdfdfdf");
        web.reload();
        return true;
    }
It would be wonderful if I have explained in more detail my previous question, so he - Why does not the reload() WebView when you change the position of touch
 
     
     
    