android 背景透明度渐变动画

button.setVisibility(View.VISIBLE);
// 背景透明度渐变动画
ObjectAnimator alpha = ObjectAnimator.ofFloat(button, "alpha", 0, 1);
alpha.setDuration(1000);
alpha.start();

posted on 2015-04-14 10:39  lsl8966  阅读(756)  评论(0编辑  收藏  举报