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のサイズを大きくするだけです。これどうやってするの?