ObjectAnimator を使用して Android でオブジェクトをアニメーション化する方法を学習していますが、セッター メソッドが更新されません。ディスプレイに単純なテキストを描画するカスタム ビューがあり、objectAnimator が操作するプライベート変数 (curnum) があるとします。
public class TempView extends View {
private Float cur_num = new Float(0.0);
private float curnum = 0f;
public TempView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public void setCurnum()
{
curnum++;
cur_num = new Float(curnum);
invalidate();
}
@Override
public void onDraw(Canvas canvas)
{
Paint paint = new Paint();
paint.setStrokeWidth(8);
paint.setTextSize(100);
canvas.drawText(cur_num.toString(), 150, 150, paint);
}
}
Activity クラスには、アニメーションを開始するアクション バー項目があります。
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.startanim) {
TempView v = (TempView)findViewById(R.id.tempView);
ObjectAnimator anim = ObjectAnimator.ofFloat(v, "curnum", 0f, 1f);
anim.setDuration(1000L);
anim.start();
}
return super.onOptionsItemSelected(item);
}
しかし、どういうわけか、setter メソッドにブレークポイントを設定すると、ヒットすることはありません。
何か見逃しましたか?