0

我知道这方面有很多问题和答案,但我经历了所有,但我找不到任何解决方案,并且近两个月我一次又一次地遇到“对不起这个视频无法播放”的问题。

这是我的xml文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
 >

<VideoView
    android:id="@+id/booksanimation"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />
</RelativeLayout>

这是我的代码..

    getWindow().setFormat(PixelFormat.TRANSLUCENT);
    videoview = (VideoView) findViewById(R.id.booksanimation);
    videoview.setVideoURI(Uri.parse("android.resource://com.d4sys.sabaq/" + R.raw.booksanimation));
    videoview.setMediaController(new MediaController(this));
    videoview.requestFocus();
    videoview.start();

我不知道是什么问题,有时当我放置另一个分辨率不同的视频时,会播放该视频但并非所有视频都播放..如果某些视频在平板电脑上播放,它不会在小型设备上播放,什么是问题?

4

1 回答 1

1

你检查视频格式了吗?并非Android本机支持的所有格式我之前都遇到过类似的问题,最后我将所有mov更改为mp4

http://developer.android.com/guide/appendix/media-formats.html

于 2012-10-25T08:54:32.527 回答