2013-03-23 57 views
0

動畫我想給動畫我的菜單,例如,當它出現在其尺寸較大,後appearence尺寸減小了一下,怎麼去解決如何bulid android的

+1

你能告訴我們一些**代碼** – 2013-03-23 06:33:24

+1

你試過了什麼? – 2013-03-23 06:47:06

+0

我能夠淡入動畫,但想要將其更改爲新的,currant動畫代碼在這裏給出 rmimran 2013-03-23 07:12:56

回答

0

你應該使用裏面的規模屬性組。這樣的事情:

<set xmlns:android="schemas.android.com/apk/res/android" 
android:interpolator="@android:anim/linear_interpolator"> 
    <scale android:fromXScale="2.0" android:fromYScale="2.0" 
      android:toXScale="1.0" android:toYScale="1.0" 
      android:duration="700" /> 
</set>