2015-09-01 146 views
0

當滾動到RecyclerView中的第一個位置項時,ScrollView是否可以繼續向上滾動?下面是代碼:RecyclerView在滾動視圖

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

    <android.support.v7.widget.RecyclerView 
     android:id="@+id/recycler_view" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:dividerHeight="@dimen/margin_10dp_in_w1024dp" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     /> 

+0

這不是默認行爲 –

+0

所以我應該自定義一個layout_behavior? – Akashi

+0

我真的不明白你想在那裏做什麼?你可以在你的問題中解釋它嗎? –

回答

0

有兩個scrollviews,在同一個方向滾動是不可能的,試圖重新審視自己的UI。

您可以:

  • 使用recyclerview處理不同勢類型的視圖,讓你不再需要另一個滾動視圖。

  • 使用coordinatorLayout中的視差視圖在每次到達第一個位置時顯示信息。

相關問題