I want to replace the dependency of com.nineoldandroids library from my project and replace it with an android native library.
I am trying to make a project based on this http://www.tutecentral.com/android-swipe-listview/ . However, I don't need to have support for android versions less than v11. Therefore there is no need to use this library. But I cannot find what to use in its place, while not making changes to the code itself.
The project import the classes
import com.nineoldandroids.animation.Animator;
import com.nineoldandroids.animation.AnimatorListenerAdapter;
import com.nineoldandroids.animation.ValueAnimator;
import com.nineoldandroids.view.ViewHelper;
import static com.nineoldandroids.view.ViewHelper.setAlpha;
import static com.nineoldandroids.view.ViewHelper.setTranslationX;
import static com.nineoldandroids.view.ViewPropertyAnimator.animate;
Thank you.
ViewHelper.setAlpha(view, alpha)
=>view.setAlpha(alpha)
) from android framework – Protract