课程
/移动开发
/Android
/明日之星-RecyclerView
我把增加的position设为0是从头增加的,但是是隐藏在里面的,怎么能让增加item自动显示出来,Recycle有类似setselection的方法吗?
2015-12-29
源自:明日之星-RecyclerView 3-3
正在回答
可以手动控制RecyclerView的定位位置,比如使RecyclerView平滑移动到position为0处:
mDatas.add(0, "我是增加的"); adapter.notifyItemInserted(0); mRecyclerView.smoothScrollToPosition(0)
类似的方法还有
mRecycleView.smoothScrollBy(distance,duration); mRecycleView.smoothScrollOffset(offset);
等等,相关的可以多了解下。
我也是,怎么解决
NotifyItemInsert
举报
带领大家学习百变RecyclerView,绝对干货,告别加班不是梦