score:1

Accepted answer

in your motionevent.action_up check the value of the y coordinate and if it lies within a desired range then set the visibility of textview e.g

 case motionevent.action_up:
    moving=false;

    if(y < 100){
       high.setvisibility(view.visible);
    }else if(y < 200){
       perfect.setvisibility(view.visible);
    }else{
       low.setvisibility(view.visible);
    }

    break;
}

Related Query

More Query from same tag