2

这应该是最简单的事情。我正在尝试使用 ViewPropertyAnimator 围绕其中心缩放 ImageView。

我有以下布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ImageView
    android:id="@+id/imageView"
    android:background="@android:color/black"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"/>

<ImageView
    android:id="@+id/target"
    android:layout_centerInParent="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/crosshair"
    />

然后我有以下代码:

// Now we show the burst view
                if(mLastBurst != null)
                {
                    ((FrameLayout)(mLastBurst.getParent())).removeView(mLastBurst);
                    mLastBurst.animate().cancel();
                    mLastBurst.setVisibility(View.GONE);
                }

                mLastBurst = getLayoutInflater().inflate(R.layout.target, null);
                mLastBurst.setX(event.getX()-mLastBurst.getWidth()/2);
                mLastBurst.setY(event.getY()-mLastBurst.getHeight()/2);
                mLastBurst.setPivotX(50);
                mLastBurst.setPivotY(50);
                mLastBurst.animate().scaleXBy(10).scaleYBy(10).setDuration(500);
                addContentView(mLastBurst,new ViewGroup.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

当我运行代码时,所发生的只是图像不是围绕图像中心缩放,而是向左漂移。

我玩过 pivotX 和 pivotY 值无济于事。这应该很简单,我想我错过了一些明显的东西。

4

1 回答 1

0

尽量不要设置 pivotX 和或 pivotY,它们默认居中。如果你设置它们,我相信单位是像素。

于 2012-10-18T21:17:16.353 回答