我在RelativeLayout中有一個ImageView。 ImageView正在填充整個RelativeLayout。 RelativeLayout不能變大。使用動畫時Trespass ViewGroup的限制
我要讓使用ScaleAnimation的ImageView的更大的那樣:
final ScaleAnimation scaleAnimationGoBigger = new ScaleAnimation(1, 1.5f, 1, 1.5f, Animation.RELATIVE_TO_SELF, (float)0.5, Animation.RELATIVE_TO_SELF, (float)0.5);
scaleAnimationGoBigger.setDuration(1000);
scaleAnimationGoBigger.setFillAfter(true);
myImageView.startAnimation(scaleAnimationGoBigger);
的RelativeLayout的的學邊界不允許顯示整個新的更大的ImageView,只顯示適合的RelativeLayout部分(使得人們看起來像一個縮放效果)。
所以我的問題是:有沒有辦法告訴一個ViewGroup內的視圖不遵守(以非法訪問)ViewGroup的邊界位置(至少在動畫期間)?
同樣的問題。 ;( – Gavjr 2014-09-04 15:06:43