我有一个 recyclerview 列表,其中包含以下项目:
红色方块只能向左滑动(拖放),绿色只能向右滑动。当元素被滑动时,出现并带有如下选项的图像:
- 向左滑动:
布局项具有以下外观:
<RelativeLayout>
<LinearLayout>
<ImageView/> //Red square
<ImageView/> //Green square
</LinearLayout>
<LinearLayout>
<ImageView/> //Red square swiped action
<ImageView/> //Green square swiped action
</LinearLayout>
</RelativeLayout>
我正在尝试使用ItemTouchHelper.Callback
并覆盖onChildDraw
制作正确动画的方法。但我不能用方形已经刷卡,并做出正确的动画。¿ 实现这一目标的另一种方法?