我想要一個imagebutton中心屏幕,打開開始「成長」,使用某種動畫順利地填充整個屏幕。在達到完整大小後,將動畫反轉回原始大小?動畫imageButton調整大小以適合屏幕
有什麼想法?這甚至有可能嗎?
我想要一個imagebutton中心屏幕,打開開始「成長」,使用某種動畫順利地填充整個屏幕。在達到完整大小後,將動畫反轉回原始大小?動畫imageButton調整大小以適合屏幕
有什麼想法?這甚至有可能嗎?
這裏是一個樣本,讓你開始創建動畫的XML文件,使用此佈局, RES /動畫/ animate.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<scale
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:fromXScale="1.0"
android:toXScale="2.0"
android:fromYScale="1.0"
android:toYScale="2.0"
android:repeatMode="reverse"
android:duration="700" />
</set>
,並在你的方法來啓動動畫使用此
Animation scaleAnim = AnimationUtils.loadAnimation(this, R.anim.animate);
view.startAnimation(scaleAnim);
詳細瞭解這裏的動畫Animations
絕對有可能的,你有沒有試圖建立一個動畫xml文件? – kabuto178