如何为多个屏幕设置从左到右和反向的动画师

How to set animator for left to right and inverse for Multiple Screens

我想为 ImageView 制作一个动画,它在屏幕上从左到右 运行,当它达到屏幕的 50% 时,它会返回。我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"

    android:duration="1000"
    android:propertyName="x"
    android:repeatMode="reverse"
    android:repeatCount="1"
    android:valueFrom="0"
    android:valueTo="250" >
</objectAnimator>

我的应用程序 运行 在我的 phone 上运行良好,但是当它 运行 在更小或更大的 phone 上运行时,它 运行 就不太好了。 我想使用 ObjectAnimator 而我的应用程序最小 SDK API 是 13。谁能帮助我?提前致谢。

为了更好的结构,建议使用显示屏幕宽度的动态方法

先计算屏幕宽度,量出屏幕的一半

    Display display = getWindowManager().getDefaultDisplay();
    Point point=new Point();
    display.getSize(point);
    final int width = point.x; // screen width
    final float halfW = width/2.0f; // half the width or to any value required,global to class
    ObjectAnimator lftToRgt,rgtToLft; // global to class

    // initialize the view in onCreate
    imageView = (ImageView) findViewById(R.id.imageButtontest);

    // set the click listener  
    imageView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
               anim();// call to animate
         }
     });

将以下功能添加到您的 class 并享受。

void anim(){
    // translationX to move object along x axis
    // next values are position value
    lftToRgt = ObjectAnimator.ofFloat( imageView,"translationX",0f,halfW )
            .setDuration(700); // to animate left to right
    rgtToLft = ObjectAnimator.ofFloat( imageView,"translationX",halfW,0f )
            .setDuration(700); // to animate right to left

    AnimatorSet s = new AnimatorSet();//required to set the sequence
    s.play( lftToRgt ).before( rgtToLft ); // manage sequence
    s.start(); // play the animation
}

查看完整的 Code Snippet