如果要实现类似如下布局:
上一页/下一页分别显示之前和剩下的4*3数据。
目前我是用RecyclerView
模拟一个GridView
来实现的,但觉得毕竟GridView
像一个列表,可以滑动,体验会不太好。
我还有一个想法就是用GridLayout
,但我又觉得代码会好臃肿。。
大家有什么好的建议吗??
迷茫2017-04-17 15:41:52
For the left and right sliding style, you can use PageView, and for the up and down sliding style, it is more convenient to use RecyclerView.
阿神2017-04-17 15:41:52
RecyclerView can completely implement it. Just use TextView for the previous/next step, and use adapter.scrollToPosition() to control page turning.