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
If i want to flip view without rearImageAnimation, i cannot set it to non.
you must change this code: setRearImageAnimation(AnimationUtils.loadAnimation(getContext(), animationResId > 0 ? animationResId : R.anim.scale_up));
to : if(animationResId > 0) setRearImageAnimation(AnimationUtils.loadAnimation(getContext(),animationResId));
Or is there another way?
The text was updated successfully, but these errors were encountered:
If i want to flip view without
rearImageAnimation
, i cannot set it to non.you must change this code:
setRearImageAnimation(AnimationUtils.loadAnimation(getContext(), animationResId > 0 ? animationResId : R.anim.scale_up));
to :
if(animationResId > 0) setRearImageAnimation(AnimationUtils.loadAnimation(getContext(),animationResId));
Or is there another way?
The text was updated successfully, but these errors were encountered: