textview上的Android缩放动画会导致文本移动

时间:2014-03-07 18:36:11

标签: android android-animation

我有一个定义为

的动画

scale.xml

<?xml version="1.0" encoding="utf-8"?>
<set
    xmlns:android="http://schemas.android.com/apk/res/android">
    <scale
          android:fromXScale="1.0"
          android:fromYScale="1.0"
          android:toXScale="2.0"
          android:toYScale="2.0"
          android:duration="3000">        
    </scale>
</set>

通过

以编程方式添加
TextView tv2 = (TextView) pw.getContentView().findViewById(R.id.playresultPopupYardsTextView);
Animation scale = AnimationUtils.loadAnimation(this, R.anim.scale);
scale.setStartOffset(5000);
scale.setFillAfter(true);
tv2.clearAnimation();
tv2.setAnimation(scale);

pw是一个定义为

的PopupWindow
LayoutInflater inflater = (LayoutInflater) this.getSystemService(view.getContext().LAYOUT_INFLATER_SERVICE);                
            final PopupWindow pw = new PopupWindow(
               inflater.inflate(R.layout.playresult_popup, null, false), 
               700, 
               300, 
               true);

布局如下 playresult_popup.xl

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:padding="10dip"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#CC667788"
    >

    <TextView
        android:id="@+id/playresultPopupPlaysTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:gravity="center_horizontal"
        android:textStyle="bold"
        android:textColor="#FFFFFF"
        android:textSize="22sp"
        android:text=""
    />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:gravity="center_horizontal"
        android:textStyle="bold"
        android:textColor="#FFFFFF"
        android:textSize="18sp"
        android:text="Yards Gained"
    />        


    <TextView
        android:id="@+id/playresultPopupYardsTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:gravity="center_horizontal"
        android:textStyle="bold"
        android:textColor="#FFFFFF"
        android:textSize="18sp"
        android:text=""
    />        

</LinearLayout>

当缩放动画运行时,它会按预期缩放文本,但是每个步骤都会向弹出窗口的右侧移动。我想知道这是不是因为我没有声明一个支点 - 如果是这样,我如何使用正确的支点使文本保持原位,只是缩放尺寸?

我搜索过,但未能找到解释。

1 个答案:

答案 0 :(得分:4)

我想出来了。我没有意识到你可以使用百分比值作为支点。添加pivotX =“50%”和pivotY =“50%”解决了这个问题。所以:

<scale android:fromXScale="1.0"
       android:fromYScale="1.0"
       android:toXScale="2.0"
       android:toYScale="2.0"
       android:pivotX="50%"
       android:pivotY="50%"
       android:duration="3000">
</scale>