プロパティ アニメーションを使用すると正しく動作しません。以下は私のコードです。ビューをクリックしてトグル アニメーションを実行しましたが、期待した結果にはなりませんでした。ログは、「onAnimationUpdate」のコールバックが 2 回だけ呼び出され、最大値を返したことを示しています。
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.product_item_top_rl:
startAnimation(v);
break;
}
}
private void startAnimation(final View v) {
int height = v.getHeight();
ValueAnimator va = ValueAnimator.ofInt(0, height);
va.setDuration(1000);
va.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
public void onAnimationUpdate(ValueAnimator animation) {
Log.d(TAG, "animation : " + animation.getAnimatedValue());
v.getLayoutParams().height = (Integer) animation.getAnimatedValue();
v.requestLayout();
}
});
va.start();
}
ここにログがあります。
D/ChooseProductFragment: animation : 150
D/ChooseProductFragment: animation : 150