我只想知道我可以知道列表是否开始滚动以及滚动何时停止。
我的代码片段如下:
listView.setOnScrollListener(new OnScrollListener() {
public void onScrollStateChanged(AbsListView arg0, int arg1) {
// TODO Auto-generated method stub
/*View toolbar = arg0.findViewById(R.id.toolbar);
// Creating the expand animation for the item
ExpandAnimation expandAni = new ExpandAnimation(toolbar, 500);*/
// Start the animation on the toolbar
}
public void onScroll(AbsListView arg0, int arg1, int arg2, int arg3) {
// TODO Auto-generated method stub
if(arg1!=0){
toolbar.setVisibility(View.GONE);
}
else{
}
}
});