任何人都知道如何检测ScrollView方向,因为我必须在滚动时显示和隐藏ActionBar?我可以在listview的帮助下轻松检测到,但不了解ScrollView。
答案 0 :(得分:0)
你可以扩展scrollView
,因为scrollview
没有这样的监听器。只需扩展scrolView并从覆盖的onScrollChanged方法调用回调。
然后在你的xml文件中使用你的CustomScrollView:
<my.package.CustomScrollView>xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
答案 1 :(得分:-1)
我认为滚动的意思是检测哪个方向,滑动已经完成。 这是example