Vary Zhao

Results 9 comments of Vary Zhao

可以的 谢谢你的反馈

目前暂时只开源了一部分 后续会考虑会开源另一部分的

部分开源,后面会打算全部开源

兄弟 服务器应该炸了

你可以通过调用`pageview.autoPrevPage()`和`pageview.autoNextPage()`翻到上一页或下一页。

reader的`StringAdapter`有提供获取每一页内容的方法

解决办法:加个判断state.getItemCount()>0,不然 recycler.getViewForPosition(0)就会报IndexOutOfBoundsException错误 ``` ... @Override public void onMeasure(RecyclerView.Recycler recycler, RecyclerView.State state, int widthSpec, int heightSpec) { if (getItemCount() != 0 && mItemCount != 0&&state.getItemCount()>0) { View view = recycler.getViewForPosition(0); ......