Android 动画2--View异步显示和隐藏

看下源码:

view的显示:

Runnable mViewGone = new Runnable() {
@Override
public void run() {
AlphaAnimation animationClose;
animationClose = new AlphaAnimation(1f, 0f);
animationClose.setDuration(200);
view.setAnimation(animationClose);
animationClose.startNow();
view.setVisibility(View.GONE);
}
};

view的隐藏:

Runnable mViewCome = new Runnable() {
@Override
public void run() {
AlphaAnimation animationClose;
animationClose = new AlphaAnimation(0f, 1f);
animationClose.setDuration(1000);
view.setAnimation(animationClose);
animationClose.startNow();
view.setVisibility(View.VISIBLE);
}
};

这个地方可以封装处理一个方法,直接将iew注入进去。


怎么使用:

直接调用运行run 方法就ok。

mViewCome.run();  mViewGone.run();


这种方式主要是用到大量图片显示的时候,我们可以通过线程池来管理线程,速度高效,加快图片下载速度。


你可能感兴趣的:(android)