You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to have an animation that scales up the row that is being re-ordered. I placed this code inside startDrag(int, int, int, int) but it is only getting hit after the row has been dropped
I want to have an animation that scales up the row that is being re-ordered. I placed this code inside startDrag(int, int, int, int) but it is only getting hit after the row has been dropped
View view = getChildAt(position);
PropertyValuesHolder pvhX = PropertyValuesHolder.ofFloat(View.SCALE_X, 1.1f);
PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1.1f);
ObjectAnimator scaleAnimation = ObjectAnimator.ofPropertyValuesHolder(view, pvhX, pvhY);
scaleAnimation.start();
Any help would be appreciated!
The text was updated successfully, but these errors were encountered: