android 背景透明度渐变动画
button.setVisibility(View.VISIBLE);
// 背景透明度渐变动画
ObjectAnimator alpha = ObjectAnimator.ofFloat(button, "alpha", 0, 1);
alpha.setDuration(1000);
alpha.start();
现主要从事PHP、Uinx/Linux、C/C++等方面的项目开发。
button.setVisibility(View.VISIBLE);
// 背景透明度渐变动画
ObjectAnimator alpha = ObjectAnimator.ofFloat(button, "alpha", 0, 1);
alpha.setDuration(1000);
alpha.start();