简体   繁体   English

RecyclerView滚动到子视图的子位置

[英]RecyclerView scroll to position of child view's child

I want to scroll to the position in the picture: 我想滚动到图片中的位置: 需求

Here is my code but there is NullPointerException 这是我的代码,但是有NullPointerException

public class ViewMenu extends LinearLayout {
    protected Handler mHandler;
    @BindView(R.id.recycler)
    protected RecyclerView mRecycler;
    //...

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        ButterKnife.bind(this);
        mHandler = new Handler();
        mRecycler.setLayoutManager(new LinearLayoutManager(getContext(), LinearLayoutManager.HORIZONTAL, false));
        //...
        Message msg=new Message();
        msg.what=1;
        Bundle bundle=new Bundle();
        bundle.putInt("targetPosition",3);//assume this is a valid position
        bundle.putInt("targetChild",2);//assume this is a valid child
        msg.setData(bundle);
        handler.sendMessage(msg);
    }
    class Handler extends android.os.Handler {
        @Override
        public void handleMessage(Message msg) {
            int targetPosition=msg.getData().getInt("targetPosition");
            int targetChild=msg.getData().getInt("targetChild");
            LinearLayoutManager layoutManager = (LinearLayoutManager) mRecycler.getLayoutManager();
            ViewGroup targetViewGroup = (ViewGroup) layoutManager.findViewByPosition(targetPosition);//targetViewGroup becomes null
            View targetView = targetViewGroup.getChildAt(targetChild);//NullPointerException
            layoutManager.scrollToPositionWithOffset(targetPosition, targetView.getLeft());
        }
    }
}

I think the problem is that when the targetViewGroup is invisible findViewByPosition returns null. 我认为问题在于,当targetViewGroup不可见时,findViewByPosition返回null。 Can anyone find a better way to do that? 有人能找到更好的方法吗?

Finally I solved it myself. 最后我自己解决了。 The cause while I guess, is when you call layoutManager.scrollToPositionWithOffset() method, a scroll event is sent to the handler. 我猜的原因是当您调用layoutManager.scrollToPositionWithOffset()方法时,滚动事件被发送到处理程序。 The recycler view will not do a real scroll until the looper got the message. 在循环程序收到消息之前,回收者视图将不会进行真正的滚动。 So the proper way is use handler.post() after calling scrollToPositionWithOffset(). 因此正确的方法是在调用scrollToPositionWithOffset()之后使用handler.post()。

LinearLayoutManager layoutManager = (LinearLayoutManager) mRecycler.getLayoutManager();
//scroll to make the target page visible
if (page < layoutManager.findFirstVisibleItemPosition())
    //if the target page is in left and invisible, post: scroll to show one pixel in the screen left
    layoutManager.scrollToPositionWithOffset(page + 1, 1);
else if (page > layoutManager.findLastVisibleItemPosition())
    //if the target page is in right and invisible, post: scroll to show one pixel in the screen right
    layoutManager.scrollToPositionWithOffset(page, mRecycler.getWidth() - mRecycler.getPaddingLeft() - mRecycler.getPaddingRight() - 1);
//post: scroll to candidate
getHandler().post(() -> {
    ViewGroup pageView = (ViewGroup) mRecycler.findViewHolderForAdapterPosition(page).itemView;
    View candView = pageView.getChildAt(cand);
        layoutManager.scrollToPositionWithOffset(page, left ? candView.getLeft() : candView.getRight());
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM