解析平移动画本位的理解

PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", 100f, 0f);


mFlVip.setTranslationY(mVipCardHeight);
        mFlVip.setTranslationX(100f);
 
 }



平移动画不会改变控件的本来的位置,改变的只是绘画的位置,


      mFlVip.setTranslationX(100f); 意思是相对控件本来的位置向右边移动100,但是只是绘画的位置改变,本位置不会改变


   PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", 100f, 0f); 

他的100是哪里呢,还是本位,注意,本位不会因为执行了   mFlVip.setTranslationX(100f);而改变,这个100就是距离本位100的位置向左边跑而恢复

  

你可能感兴趣的:(解析平移动画本位的理解)