带动画的Android滑动列表项

时间:2017-09-14 14:28:30

标签: android android-recyclerview android-animation swipe

我有一个带有左/右滑动选项的回收视图。我的动画在这里:

RES /动画/ slide_left_out

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false" >
    <translate android:duration="5000" android:fromXDelta="0%"     android:toXDelta="-100%"/>
    <alpha android:duration="5000" android:fromAlpha="1.0"     android:toAlpha="1.0" />
</set>

并且效果很好,但我想在刷卡开始时更改其颜色(作为Gmail收件箱)。 View.setBackground(...)不起作用。

我怎么能这样做?谢谢!

1 个答案:

答案 0 :(得分:1)

You can use these external libraries

SwipeListView

SwipeMenuListView