-2

我试图animateImageView子布局(Relativelayout)到父布局(Relativelayout)。问题是Imageview在进入父布局时没有被绘制。

4

1 回答 1

1

这个 R.anim.popup_show.xml 文件

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

 <translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="500"/>
    </set>

并在java文件中应用,如

   Animation animRight = AnimationUtils.loadAnimation(options.this, R.anim.popup_show);
   ImageView.startAnimation( animRight ); 
于 2011-03-14T09:59:48.427 回答