2
我用recyclerview一個nestedscrollview裏面如下內:recyclerview nestedscrollview addOnScrollListener(無盡scrolllistener)
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
android:id="@+id/mainScrollView"
android:layout_marginBottom="?attr/actionBarSize"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:overScrollMode="never"
android:layout_height="250dp"
android:focusableInTouchMode="true"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/VerticalRV"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
的問題是,當我想給聽衆(onScrollListener
)設置到該回收來看,它不反正工作。我也調試了這段代碼,但它甚至沒有發現這個事件。以下是java代碼:
recyclerView.setNestedScrollingEnabled(false);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(layoutManager);
MyAdapter adapter = new MyAdapter(verticalShownData, this.getActivity());
recyclerView.setAdapter(adapter);
recyclerView.addOnScrollListener(new HideShowScrollListener() {
@Override
public void onHide() {
animateCallback.animateHide();
}
@Override
public void onShow() {
animateCallback.animateShow();
}
});
我該如何讓這個監聽器工作? 在此先感謝。
將視圖尋呼機放在appbar的collapsingtoolbarlayout中,移除nestedscrollview並將此標誌添加到回收視圖app:layout_behavior =「@ string/appbar_scrolling_view_behavior」 – uguboz
我不使用appbar,如代碼中所示。無論如何,你能否提供一些代碼給我一些線索? @uguboz –
我現在沒有安裝android studio,但您可以按照https://antonioleiva.com/collapsing-toolbar-layout/教程獲得相同的結果。 – uguboz