android随笔10——自定义插入器

<span style="color: rgb(204, 0, 0); font-family: 'Microsoft Yahei', Simsun; font-size: 17px; line-height: 28px;">插入器就是规定动画执行的中间过程</span>
Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
shake.setInterpolator(new Interpolator() {

        @Override    

*input​ 输入值 相当于X轴

       public float getInterpolation(float input) {     

          // TODO Auto-generated method stub     

           return 0;   *0 输出值 相当于Y轴

        }   

 });

你可能感兴趣的:(android随笔10——自定义插入器)