1
我想淡入一個元素,但以某種方式將其隱藏(GONE
)變爲可見,將元素從中移除。我目前使用的動畫是AlphaAnimation
將元素從變爲可見(而不是從不可見)
Animation fadeIn = new AlphaAnimation(0, 1);
fadeIn.setInterpolator(new DecelerateInterpolator());
fadeIn.setDuration(2000);
但這只是它動畫化從INVSIBLE
到VISIBLE
,我要的是把它從動畫到GONE
VISIBLE
。
這甚至有可能嗎?還是我必須通過對周圍元素進行動畫來使這變得更加複雜?