Android中的动画/视频背景

时间:2014-12-06 05:35:40

标签: android android-layout

我正在开发一个具有视频/动画背景活动和4按钮

的项目

我喜欢像TuneIn Radio App的登录页面那样设计这个活动。

感谢帮助。

1 个答案:

答案 0 :(得分:1)

您可以使用新的Property Animation Api进行色彩动画:

 Integer colorFrom = getResources().getColor(R.color.red);
Integer colorTo = getResources().getColor(R.color.blue);
ValueAnimator colorAnimation = ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo);
 colorAnimation.addUpdateListener(new AnimatorUpdateListener() {

@Override
public void onAnimationUpdate(ValueAnimator animator) {
    textView.setBackgroundColor((Integer)animator.getAnimatedValue());
}

});
 colorAnimation.start();