xml objectAnimator を使用して画像 (ボール) を変換しようとしています。objectAnimator xml ファイルを参照しようとすると、getApplicationContext() が null を返す可能性があると表示されます。携帯電話にフラッシュすると、すぐにクラッシュしました。その行と setAnimationListener 行を取り出すと、機能します。ただし、これらの行が 1 つしかない場合は機能しません。
MainActivity.java
public class MainActivity extends ActionBarActivity implements
Animation.AnimationListener{
ImageView ball;
Button moveb1;
Animation move;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ball = (ImageView) findViewById(R.id.ball);
moveb1 = (Button) findViewById(R.id.move1);
move = AnimationUtils.loadAnimation(getApplicationContext(),
R.animator.move);
move.setAnimationListener(this);
}
}
move.xml
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:ordering="together">
<objectAnimator
android:propertyName="x"
android:duration="500"
android:valueTo="400"
android:valueType="intType"/>
<objectAnimator
android:propertyName="y"
android:duration="500"
android:valueTo="300"
android:valueType="intType"/>
</set>
どんな助けでも大歓迎です。