20

次のように、ImageViewを上から下に段階的に表示する方法はありますか?

ここに画像の説明を入力してください

くだらないアニメーションでごめんなさい。

4

1 に答える 1

34

私はAndroidアニメーションにあまり精通していませんが、1つの(少しハックっぽい)方法は、画像をaでラップし、その値ClipDrawableをアニメーション化することです。level例えば:

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/clip_source" />

clip_sourceドローアブルはどこにありますか:

<?xml version="1.0" encoding="utf-8"?>
<clip xmlns:android="http://schemas.android.com/apk/res/android"
    android:clipOrientation="vertical"
    android:drawable="@drawable/your_own_drawable"
    android:gravity="bottom" />

次に、コードで次のようになります。

// a field in your class
private int mLevel = 0;

ImageView img = (ImageView) findViewById(R.id.imageView1);
mImageDrawable = (ClipDrawable) img.getDrawable();
mImageDrawable.setLevel(0);
mHandler.post(animateImage);

はオブジェクトですanimateImageRunnable

private Runnable animateImage = new Runnable() {

        @Override
        public void run() {
            doTheAnimation();
        }
    };

doTheAnimation方法:

private void doTheAnimation() {
    mLevel += 1000;
    mImageDrawable.setLevel(mLevel);
    if (mLevel <= 10000) {
        mHandler.postDelayed(animateImage, 50);
    } else {
        mHandler.removeCallbacks(animateImage);
    }
}
于 2012-08-26T06:06:39.527 に答える