protected void startBreath() {
if (this.mVideoShotButton != null) {
Animation alphaAnimation = new AlphaAnimation(1.0f, 0.0f);
alphaAnimation.setDuration(500);
alphaAnimation.setInterpolator(new LinearInterpolator());
alphaAnimation.setRepeatCount(-1);
alphaAnimation.setRepeatMode(2);
this.mVideoShotButton.startAnimation(alphaAnimation);
this.mHandler.sendEmptyMessageDelayed(258, 10000);
}
}
AlbumBaseControllerFragment.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:letv
作者:
评论列表
文章目录