VideoView动画

时间:2011-07-19 12:24:05

标签: android-videoview android-animation

我正在使用带有动画的视频视图(video.setAnimation(slideinRight);)除了转换时,一切正常,只有视频的布局是动画,而不是视频。当翻译动画发生时,我看到一个框移动并掩盖了我的视频,但视频从未随之移动。我现在该做什么不知所措。

3 个答案:

答案 0 :(得分:5)

我目前正在尝试将动画放在VideoView上。

如果您查看Android源代码,VideoView基本上是a SurfaceView,加上MediaPlayer,基本管理播放器的状态机。

实际上,真正的“绘图”工作似乎是由mediaPlayer中的原生方法处理的(a.k.a.android设备上的真实播放器引擎实现)

我们在不同的设备上测试过动画,发现VideoView的底层视频播放器行为/实现在不同的Android设备中并不相同:

  • 某些设备正确处理播放器的视图动画
  • 其他人不要,只是显示模糊,黑屏或错误的显示......

最重要的是,VideoView似乎直接写在内存上,因此任何“解决方法”(比如在前面放置一个不透明的视图,并在该视图上设置动画)似乎都不起作用。

我很高兴有其他人对此提出反馈:)

答案 1 :(得分:2)

很抱歉回答这个问题的时间相当晚,但这是值得的。如果您只想使用“幻灯片”动画。 尝试将视频视图放在布局中并为布局设置动画。

我在代码中设置的方式是;

AbsoluteLayout Animationlayout = (AbsoluteLayout)findViewById(R.string.frontlayout);
VideoView pvv = new VideoView(getApplicationContext());
pvv.getHolder().addCallback(this);
Animationlayout.addView(pvv);
// load video data in pvv.

然后,您要将视频动画设置为幻灯片;

Animationlayout.animate().xBy(25).setDuration(500).setInterpolator(new BounceInterpolator());

请注意,这是3.1动画系统。

不确定经典2.1动画制作方法是否会像这样工作,但它应该是相同的。

旋转/缩放布局等内容无效。平移布局并消除它似乎是唯一可行的事情。

答案 2 :(得分:1)

只需使用 TextureView

有关TextureView here的更多参考。

我在 TextureView 上完成了 ZoomIn - ZoomOut 动画。

Res - >中添加动画xml anim 文件夹。

<强> zoom_in_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false">
    <scale
        android:duration="1000"
        android:fillAfter="false"
        android:fromXScale="1.0"
        android:fromYScale="1.0"
        android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toXScale="1.2"
        android:toYScale="1.2" />
    <set android:interpolator="@android:anim/decelerate_interpolator">
        <scale
            android:duration="1000"
            android:fillBefore="false"
            android:fromXScale="1.2"
            android:fromYScale="1.2"
            android:pivotX="50%"
            android:pivotY="50%"
            android:startOffset="500"
            android:toXScale="1.0"
            android:toYScale="1.0" />

    </set>
</set>

<强> texture_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<TextureView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/textureView"
    android:layout_margin="50dp"
    android:background="@android:color/darker_gray"
    android:layout_width="wrap_content" android:layout_height="wrap_content">

</TextureView>

<强> TextureViewActivity.java

import android.graphics.SurfaceTexture;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Surface;
import android.view.TextureView;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import java.io.IOException;


public class TextureViewActivity extends AppCompatActivity implements TextureView.SurfaceTextureListener  {

    private TextureView textureView;
    private MediaPlayer mMediaPlayer;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.texture_layout);

        textureView = (TextureView)findViewById(R.id.textureView);
        textureView.setSurfaceTextureListener(this);

        textureView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Animation zoomAnimation = AnimationUtils.loadAnimation(TextureViewActivity.this, R.anim.zoom_in_out);
                textureView.startAnimation(zoomAnimation);
            }
        });


    }

    private String getVideoPath(){
        return "android.resource://" + getPackageName() + "/" + R.raw.promovideo;
    }


    @Override
    public void onSurfaceTextureAvailable(SurfaceTexture surfaceTexture, int width, int height) {
        Surface surface = new Surface(surfaceTexture);
        try {
            mMediaPlayer= new MediaPlayer();
            mMediaPlayer.setDataSource(TextureViewActivity.this, Uri.parse(getVideoPath()));
            mMediaPlayer.setSurface(surface);
            mMediaPlayer.prepare();
            mMediaPlayer.start();
            mMediaPlayer.setLooping(true);
        } catch (IllegalArgumentException e) {
            e.printStackTrace();
        } catch (SecurityException e) {
            e.printStackTrace();
        } catch (IllegalStateException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    @Override
    public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {

    }

    @Override
    public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
        return false;
    }

    @Override
    public void onSurfaceTextureUpdated(SurfaceTexture surface) {

    }
}

完成