RecyclerView滚动到子视图的孩子的位置

时间:2018-02-06 04:27:26

标签: java android android-recyclerview handler linearlayoutmanager

我想滚动到图片中的位置:requirement

这是我的代码,但有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());
        }
    }
}

我认为问题是当targetViewGroup不可见时,findViewByPosition返回null。谁能找到更好的方法呢?

1 个答案:

答案 0 :(得分:0)

最后我自己解决了。我猜的原因是,当你调用layoutManager.scrollToPositionWithOffset()方法时,会向处理程序发送一个scroll事件。在循环器收到消息之前,回收器视图不会进行真正的滚动。所以正确的方法是在调用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());
});