我正在创建一个动画来增加 TextView 的大小。这是我的 XML:
<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXScale="0.5"
android:toXScale="2.5"
android:fromYScale="0.5"
android:toYScale="2.5"
android:duration="4000" />
这是我的 Java 文件:
Animation anim = AnimationUtils.loadAnimation(MainActivity.this, R.anim.answeranim);
txtanswer.startAnimation(anim);
我的问题是我的 TextViewer 转到屏幕中心并启动动画。我希望我的 TextViewer 从我已经设置的位置增加他的大小。事实上,我希望动画只是增加 TextViewer 的大小而不是改变它的位置。我怎样才能做到这一点?