我知道这方面有很多问题和答案,但我经历了所有,但我找不到任何解决方案,并且近两个月我一次又一次地遇到“对不起这个视频无法播放”的问题。
这是我的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();
我不知道是什么问题,有时当我放置另一个分辨率不同的视频时,会播放该视频但并非所有视频都播放..如果某些视频在平板电脑上播放,它不会在小型设备上播放,什么是问题?