Android應用中的動畫詳細使用教程

1。Android的動畫
1.1。使用動畫
Android容許改變對象的屬性,在必定的時間間隔經過性能動畫API。html

動畫的父類的API是動畫師 類。objectanimator類能夠用來修改對象的屬性。android

You can also add ananimatorlistener班你動畫師類。 聽衆稱爲階段的在不一樣的動畫。 可使用此執行操做或後前聽衆必定的動畫,如添加或意見從一個ViewGroup。app

這個(動畫)方法一意見對象返回一個viewpropertyanimator爲視圖對象。 它提供一個API的動畫能夠執行典型的。ide

下面的代碼顯示了一個例子。佈局

myView.animate().translationX(400);

// if an animation is slow you can try to activate a hardware layer which
// uses a cache
// watch-out: this might not always result in a correct animation

myView.animate().translationX(400).withLayer();

你也能夠登記行動,這是開始前或結束後執行的動畫。性能

// StartAction
myView.animate().translationX(100).withStartAction(new Runnable(){
    public void run(){
        viewer.setTranslationX(100-myView.getWidth());
        // do something
    }
});

// EndAction
myView.animate().alpha(0).withEndAction(new Runnable(){
    public void run(){
        // rRemove the view from the parent layout
        parent.removeView(myView);
    }
});

1.2。定義動畫的變化率
經過setinterpolator()你登記的方法timeinterpolator一個動畫對象。 率定義的變化爲。動畫

標準是線性的。 Android平臺定義了一些默認的 爲例。acceleratedecelerateinterpolator類定義了動畫的開始和結束 慢慢加速經過中間。this

1.3。使用動畫任意屬性
動畫系統不能自動理解每種類型 經過。setevaluator方法能夠設置類型的對象TypeEvaluator它容許任意。 動畫創做類型,評估這些經過提供定製。lua

1.4。佈局的動畫
這個layouttransition類容許設置動畫在佈局容器和 的 視圖層次 這個集裝箱將動畫的變化。code

package com.example.android.layoutanimation;

import android.animation.LayoutTransition;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

public class MainActivity extends Activity {

    private ViewGroup viewGroup;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        LayoutTransition l = new LayoutTransition();
        l.enableTransitionType(LayoutTransition.CHANGING);
        viewGroup = (ViewGroup) findViewById(R.id.container);
        viewGroup.setLayoutTransition(l);

    }

    public void onClick(View view) {
        viewGroup.addView(new Button(this));
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

1.5。活動過渡動畫
動畫能夠應用於意見但它也有可能將這些活動之間的過渡。

這個activityoptions類能夠定義默認值或用戶的動畫。

public void onClick(View view) {
    Intent intent = new Intent(this, SecondActivity.class);
    ActivityOptions options = ActivityOptions.makeScaleUpAnimation(view, 0,
            0, view.getWidth(), view.getHeight());
    startActivity(intent, options.toBundle());
}

原文博客地址:http://www.apkbus.com/blog-92...

相關文章
相關標籤/搜索