基本的に、画像をクリックすると画像が右に移動しますが、アニメーションが完了すると元の位置に戻りますか? アニメの途中で止まるようにするにはどうすればいいですか?これが私のコードです
    <?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"> 
    <translate android:fromXDelta="0%" android:toXDelta="70%" android:duration="1000"/>
</set>
これは私のslide_in_right.xmlです
 public void sideBar()
   {
       ImageView sidebar = (ImageView)findViewById(R.id.sidebar);
       mSlideInRight = AnimationUtils.loadAnimation(this, R.anim.slide_in_right);
       sidebar.startAnimation(mSlideInRight);
   }
そして、これは右にスライドするコードです