我正在创建一个在视频中播放视频的应用程序作为启动画面。它不适用于模拟器和几个真正的手机,它说“对不起,这个视频无法播放。”。我尝试了很多类型的视频(根据http://developer.android.com/guide/appendix/media-formats.html支持所有视频),我尝试的最后一个是:http://download.wavetlan.com/SVV/Media/HTTP/BlackBerry.3gp。我还在互联网上搜索解决方案。但他们都没有工作。 哪里出错了? 我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:contentDescription="@string/hello_world"
android:src="@drawable/logo" />
<VideoView
android:id="@+id/videoView_circle"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<VideoView
android:id="@+id/videoView_loading"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_below="@+id/videoView_circle"
android:layout_centerHorizontal="true"
android:layout_marginTop="60dp" />
</RelativeLayout>
我的java:
import android.app.Activity;
import android.os.Bundle;
import android.widget.VideoView;
public class SplashActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
VideoView videoView = (VideoView)findViewById(R.id.videoView_circle);
//MediaController mediaController = new MediaController(this);
// mediaController.setAnchorView(videoView);
//videoView.setMediaController(mediaController);
videoView.setVideoPath("android.resource://com.tamaskoos.tbbt/raw/blackberry");
videoView.start();
}
}
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.koostamas.tbbt"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar" >
<activity
android:name="com.koostamas.tbbt.SplashActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.koostamas.tbbt.MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
</manifest>
这里也是我的logcat:
03-18 18:14:35.659: D/MediaPlayer(348): Couldn't open file on client side, trying server side
03-18 18:14:35.748: E/MediaPlayer(348): error (1, -2147483648)
03-18 18:14:35.860: E/MediaPlayer(348): Error (1,-2147483648)
03-18 18:14:35.860: D/VideoView(348): Error: 1,-2147483648
我很长时间都在搞这个。如果有人可以帮助我,我会很高兴。 提前谢谢。
答案 0 :(得分:0)
1)"Couldn't open file on client side, trying server side"
此消息指的是由于不支持编解码器或文件不存在而无法打开文件,因此/ raw文件夹中的文件必须命名为“blackberry.3gp
”
2)您的应用包是com.koostamas.tbbt
,而不是您在此处定义的com.tamaskoos.tbbt
:
videoView.setVideoPath("android.resource://com.tamaskoos.tbbt/raw/blackberry");
更改包名称以加载视频资源:
VideoView videoView = (VideoView)findViewById(R.id.videoView_circle);
videoView.setMediaController(new MediaController(this));
videoView.setVideoURI(Uri.parse("android.resource://com.koostamas.tbbt/" + R.raw.blackberry));
videoView.start();