0
我使用RotateAnimation
來旋轉我的FrameLayout
,其中有三個ImageView
。但是在旋轉之後,具有其子視圖的佈局返回到動畫之前的開始位置。我怎樣才能讓它在動畫之後保持旋轉?RotateAnimation後的佈局位置
我使用RotateAnimation
來旋轉我的FrameLayout
,其中有三個ImageView
。但是在旋轉之後,具有其子視圖的佈局返回到動畫之前的開始位置。我怎樣才能讓它在動畫之後保持旋轉?RotateAnimation後的佈局位置
閱讀動畫文檔,特別是fillAfter。
http://developer.android.com/reference/android/view/animation/Animation.html
fillAfter已經設置爲true,但是沒有效果... –
這是關係到fillAfter,fillBefore和fillEnabled性能。我會使用fillAfter =「true」,我想 – njzk2