0

动画文件从左上角放大到全屏

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
    android:duration="800"
    android:fromXScale=".1"
    android:fromYScale=".1"
    android:pivotX="100%"
    android:pivotY="0%"
    android:toXScale="1.0"
    android:toYScale="1.0"/>
</set>

在 onCreate 我有

newHintAnimation = AnimationUtils.loadAnimation(this,
                R.anim.newhintzoomin);
newHintAnimation.setAnimationListener(this) ;

在我的点击

try {
    hintBitmap = BitmapFactory.decodeStream(this.getApplicationContext()                    .getAssets().open("logos/"+question.getShintFileName()));
    } catch (IOException e) {
    hintBitmap = null ;
    e.printStackTrace();

hintImage.setVisibility(View.VISIBLE) ;
hintImage.setImageBitmap(hintBitmap);
newHintAnimation.reset() ;
hintImage.startAnimation(newHintAnimation) ;

我的布局 xml 具有以下内容

<ImageView
    android:id="@+id/hintImage"
    android:layout_width="60dip"
    android:layout_height="60dip"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/question_header_layout"
    android:layout_marginLeft="10dip"
    android:layout_marginTop="10dip"
    android:visibility="visible" />

我检查了一下,我在位图上没有得到空值。如果使用 overridePendingTransition(R.anim.newhintzoomin, 0) 在 Activity 中运行相同的代码;有用。

4

1 回答 1

1

请尝试这是:

Animation hyperspaceJumpAnimation = AnimationUtils.loadAnimation(this, R.anim.newhintzoomin);
hintImage.startAnimation(newHintAnimation);

让我知道它是否有效:) 祝你好运

于 2012-08-23T08:11:41.523 回答