我有一個嵌套滾動視圖作爲父項,2個recyclerviews作爲其子項。回收者視圖的問題是一次性繪製它的孩子,而不是繪製滾動。我怎樣才能防止這一點。我讀到,如果我們添加嵌套滾動視圖中的RecyclerView行爲問題
android:nestedScrollingEnabled="false"
財產這個問題來了。但我添加了這個屬性來使滾動更平滑。下面給出的是我的xml文件。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/color_fafafa"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:nestedScrollingEnabled="false"
android:paddingLeft="@dimen/dp_5"
android:paddingRight="@dimen/dp_5"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
有人可以告訴我我該怎麼解決這個問題?
回收站視圖是自身實現ScrollingView。將scrolllerView放在滾動視圖中並不是一個很好的做法。 –
您是否檢查此鏈接:http://stackoverflow.com/questions/31000081/how-to-use-recyclerview-inside-nestedscrollview –
設置layout_height =「match_parent」在RecyclerView –