I want to detect the end of scroll event of a scrollView. first,i implement the OnCrollChange method and i try to listen some values if they can help me to know the end of scroll. Thank to help me.
 scrollView.setOnScrollChangeListener(new View.OnScrollChangeListener(){
            @Override
            public void onScrollChange(View view, int i, int i1, int i2, int i3){
                Toast.makeText(getApplicationContext(),"in SCroll ------->"+i+" "+i1+" "+i2+" "+i3,Toast.LENGTH_SHORT).show();
                shadowView.setBackgroundResource(R.drawable.shadow);
                if ((i3==0)){
                    Toast.makeText(getApplicationContext()," equality ----------------------> ",Toast.LENGTH_SHORT).show();
                    shadowView.setBackgroundResource(R.drawable.trans);
                }
                else {
                   // Toast.makeText(getApplicationContext()," NO ----------------------> ",Toast.LENGTH_SHORT).show();
                }
            }
        }); 
     
    