我已经在布局上成功添加了VideoView,也可以播放它。单击某些按钮时,我在videoview顶部有一个漂亮的动画徽标。同时,我想淡出视频。但是在其上运行alpha动画会立即将其变黑。我发现videoview的行为不像普通视图,因为它是表面视图。我尝试将其放入框架布局中,但是没有用。动画看起来像这样:
AlphaAnimation alphaAnimation = new AlphaAnimation(1.0f, 0.0f);
alphaAnimation.setDuration(1000);
alphaAnimation.setFillAfter(true);
videoView.suspend(); //pause video
videoView.startAnimation(alphaAnimation);
那么如何淡出视频呢?
最佳答案
您不能为VideoView
设置动画。为什么不尝试使用TextureView
,它的行为就像普通的View
。您可以在TextureView
from this answer in SO中找到如何播放视频。