をクリックするまで、アニメーションの方法applyTransformationがトリガされていない、私はこのアニメコードました:私はこれはとても奇妙である任意のレイアウトに
public class ExpandAnimation extends Animation {
private View mAnimatedView;
private MarginLayoutParams mViewLayoutParams;
private int mMarginStart, mMarginEnd;
private boolean mWasEndedAlready = false;
/**
* Initialize the animation
* @param view The layout we want to animate
* @param duration The duration of the animation, in ms
*/
public ExpandAnimation(View view, int duration) {
setDuration(duration);
mAnimatedView = view;
mViewLayoutParams = (MarginLayoutParams) view.getLayoutParams();
mMarginStart = mViewLayoutParams.rightMargin;
mMarginEnd = (mMarginStart == 0 ? (0- view.getWidth()) : 0);
view.setVisibility(View.VISIBLE);
mAnimatedView.requestLayout();
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
super.applyTransformation(interpolatedTime, t);
if (interpolatedTime < 1.0f) {
// Calculating the new bottom margin, and setting it
mViewLayoutParams.rightMargin = mMarginStart
+ (int) ((mMarginEnd - mMarginStart) * interpolatedTime);
// Invalidating the layout, making us seeing the changes we made
mAnimatedView.requestLayout();
// Making sure we didn't run the ending before (it happens!)
} else if (!mWasEndedAlready) {
mViewLayoutParams.rightMargin = mMarginEnd;
mAnimatedView.requestLayout();
mWasEndedAlready = true;
}
}
}
をそして、私はこのアニメーションを使用します。
View parent = (View) v.getParent();
View containerMenu = parent.findViewById(R.id.containerMenu);
ExpandAnimation anim=new ExpandAnimation(containerMenu, 1000);
containerMenu.startAnimation(anim);
このアニメーションはレイアウトを切り替えます隠す/それを示す。
デフォルトでは、非表示になっています。クリックすると、アニメーションが動作して表示されます。もう一度クリックすると、正しく縮小されます。しかし、3回目は何もしません。私はデバッグして、コンストラクタがだが、applyTransformation
ではないことを知った。 どういうわけか、画面上のレイアウトをクリックすると、突然アニメーションが始まります。
編集 誰もが知っていますか?適用される変換はトリガーされますか?
私は同じコードを使用していますが、全く同じ問題があります。 applyTranformationは、3回目以降の呼び出しはありません。何とかアニメーションをビュー上で再設定する必要があるようです。私はcontainerMenu.clearAnimation()を呼び出そうとしましたが、それは役に立ちません。 –
私は何時間も戦ってきましたが、結果はまだありません... – Reinherd
@NetWolf回避策を見つけることができました。私は答えとして投稿します。 – Reinherd