-2
我試圖animate
ImageView
從子佈局(Relativelayout)
到父佈局(Relativelayout)
。問題是Imageview
在進入父級佈局時沒有被繪製。橫跨佈局動畫視圖
我試圖animate
ImageView
從子佈局(Relativelayout)
到父佈局(Relativelayout)
。問題是Imageview
在進入父級佈局時沒有被繪製。橫跨佈局動畫視圖
這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);
需要更多的澄清......請 – RobinHood 2011-03-14 11:44:03
其中查看HVü要動畫..? – 2011-03-14 11:53:02
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/LayoutAnimation2.html – 2011-03-15 05:06:00