经过几个小时的调查后,我没有在Android中找到任何可以向两个方向滚动并具有回收视图功能的视图。
我在寻找什么?我需要一个可以显示256x256按钮网格的视图。
在屏幕上可以显示一个时刻~12x8个按钮,其他需要在屏幕的右下方找到一个。
我在这里发现的效果最相似,
http://wiresareobsolete.com/2015/02/recyclerview-layoutmanager-redux/comment-page-1/
但是GitHub存储库中的代码被破坏 - 当我尝试快速滚动时 - 窗口变白了。
答案 0 :(得分:-1)
我没有解决这个问题,但我希望这可能有效
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</HorizontalScrollView>