rahulrj / Swipe_RecyclerView

Modifed SwipeList by 47deg to work with RecyclerView
168 stars 38 forks source link

当你快速滑翔时长按就会发生NullPointerException #6

Open imcloud opened 9 years ago

imcloud commented 9 years ago

state = SCROLL_STATE_SETTLING (fast!)

longClick a item

nullpointexception

swipeListView.getChildAt(position - mLayoutManager.findFirstVisibleItemPosition()) == null

protected void openAnimate(int position) {
        final View child = swipeListView.getChildAt(position - mLayoutManager.findFirstVisibleItemPosition()).findViewById(swipeFrontView);

        if (child != null) {
            openAnimate(child, position);
        }
    }