Android:很抱歉,此视频无法在videoview中播放

时间:2012-10-25 08:04:01

标签: android

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

这是我的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();

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

1 个答案:

答案 0 :(得分:1)

您是否检查过视频格式?并非Android本地支持所有格式 我之前面临类似的问题,最后我将所有的mov改为mp4

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