我的Hackberry主板与Android 4.0.4有一个奇怪的问题,我必须全屏播放视频,但视频非常不稳定,如果从我的应用程序播放,则非常慢。如果我在默认媒体播放器上播放相同的mp4视频,那么一切都很好。我的三星S3上的同样的apk也快速进入应用程序和媒体播放器。
这是我的布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<VideoView
android:id="@+id/surface_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"/>
</RelativeLayout>
这是我用来播放视频的代码
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mVideoView = (VideoView) findViewById(R.id.surface_view);
mVideoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() +"/"+R.raw.decart));
mVideoView.setMediaController(new MediaController(this));
mVideoView.requestFocus();
mVideoView.start();
和清单
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:persistent="true"
android:largeHeap="true" >
<activity
android:name=".MainActivity"
android:screenOrientation="landscape"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
有什么想法吗?
我也做了一个测试,如果我将我的视频放入SD-CARD就可以了,如果我在原始资源中使用该文件,我就会遇到视频问题。以下似乎是解决方案,但对我来说不是一个好的解决方案。
//NOT OK
mVideoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() +"/"+R.raw.decart));
// OK
mVideoView.setVideoURI(Uri.parse(new File("/sdcard/decart.mp4").toString()));
向大家致以最诚挚的问候
答案 0 :(得分:1)
据我所知,这里的问题与视频本身无关。它只是您可以从两个来源实现的吞吐量。 android.resource://东西似乎有性能问题,简单的文件访问没有。
您可以尝试简单地从两个源读取文件,测量读取速度并查看罪魁祸首是否真的是I / O吞吐量。