Questo è così strano, ho il codice di animazione:metodo Animazione applyTransformation non attivato fino a quando clicco qualsiasi layout
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;
}
}
}
e io uso questa animazione:
View parent = (View) v.getParent();
View containerMenu = parent.findViewById(R.id.containerMenu);
ExpandAnimation anim=new ExpandAnimation(containerMenu, 1000);
containerMenu.startAnimation(anim);
Questa animazione alternare un layout nascondendo/mostrandolo.
Per impostazione predefinita, è nascosto. Quando clicco, l'animazione funziona e viene mostrata. Quando faccio di nuovo clic, si restringe correttamente. Ma la terza volta, non fa nulla. Ho eseguito il debug e ho scoperto che il costruttore si chiama ma nonapplyTransformation
. In qualche modo, se faccio clic su un qualsiasi layout intorno allo schermo, l'animazione inizia improvvisamente.
Qualche idea?
Modifica Qualcuno sa WHEN is applyTransformation triggered?
Sto usando lo stesso codice e ho lo stesso identico problema. applyTranformation non viene mai chiamato la terza o le volte successive. È come se l'animazione dovesse essere ripristinata sulla vista in qualche modo. Ho provato a chiamare containerMenu.clearAnimation() ma non aiuta. –
L'ho combattuto per molte ore, e ancora senza risultato ... – Reinherd
@NetWolf Sono riuscito a trovare una soluzione alternativa. Lo posterò come risposta. – Reinherd