ListViewDraggingAnimation broken on Android 5 Lollipop

后端 未结 4 668
無奈伤痛
無奈伤痛 2020-12-14 01:01

I\'m using ListViewDraggingAnimation by DevBytes, but it seems broken on Android Lollipop developer preview 2 (LPX13D). When I drag a row over other rows, those rows will di

4条回答
  •  抹茶落季
    2020-12-14 01:27

    I found the problem. It came from this flag. StableArrayAdapter.hasStableId.

    It fix all problem from this view on Lollipop.

    @Override
    public boolean hasStableIds()
    {
        return android.os.Build.VERSION.SDK_INT < 20;
    }
    

提交回复
热议问题