次のように、ImageViewを上から下に段階的に表示する方法はありますか?
くだらないアニメーションでごめんなさい。
私は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);
はオブジェクトですanimateImage
:Runnable
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);
}
}