Questions tagged «android-scroll»

13
ScrollView中的Recyclerview无法平滑滚动
对于我的应用我使用的是RecyclerView内部的ScrollView,其中RecyclerView有基于使用其内容的高度这个库。滚动正常,但在上滚动时效果不佳RecyclerView。当我滚动ScrollView自身时,它会平滑滚动。 我用来定义的代码RecyclerView: LinearLayoutManager friendsLayoutManager = new LinearLayoutManager(getActivity().getApplicationContext(), android.support.v7.widget.LinearLayoutManager.VERTICAL, false); mFriendsListView.setLayoutManager(friendsLayoutManager); mFriendsListView.addItemDecoration(new DividerItemDecoration(getActivity().getApplicationContext(), null)); 该RecyclerView在ScrollView: <android.support.v7.widget.RecyclerView android:layout_marginTop="10dp" android:layout_marginBottom="10dp" android:id="@+id/friendsList" android:layout_width="match_parent" android:layout_height="wrap_content" />

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.