Yes, after the throw he comes in perfect condition, which means that your throw is over. To do this, you need to add a listener to your list, for example list.setOnScrollListener(this). Then you should check the listener to see if he is in perfect condition or not. like this
public void onScrollStateChanged(AbsListView view, int scrollState)
{
if(OnScrollListener.SCROLL_STATE_IDLE)
{
your code;
}
}
source
share