Open 2dxgujun opened 9 years ago
Hi. I need to display both round corner bitmap and fade-in animation.#617 Something comes to my mind:
I think it can split in two things:
I think can set the image drawable in displayer and animte the view in animator.
And the usage may be like:
DisplayImageOptions options= new DisplayImageOptions.Builder() ... .displayer(new RoundedBitmapDisplayer(10)) .animator(new FadeInBitmapAnimator(500)) .build();
Consider a LinkedDisplayer?
What about Decorator pattern? Or Composite?
Hi. I need to display both round corner bitmap and fade-in animation.#617 Something comes to my mind:
I think it can split in two things:
I think can set the image drawable in displayer and animte the view in animator.
And the usage may be like:
Consider a LinkedDisplayer?