我试图在我的Android应用中将视频作为启动画面播放。 我已经搜索了很多有关 VideoView 问题的教程和回复者,但我不知道该怎么做......
我尝试使用硬编码链接到我的SD卡(/sdcard/filename.mp4),我尝试使用Environment.getExternalStorageDirectory(),我尝试使用我的应用程序中的文件夹中的视频(R.raw.filename),似乎没有工作。我得到黑屏或我无法播放此视频的消息 ......
对于我尝试使用各种视频格式的所有方法(所有这些格式都支持Android)
这是我的Java代码:
package com.example.android;
import android.app.Activity;
import android.app.Fragment;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.MediaController;
import android.widget.VideoView;
public class SplashScreen extends Activity implements OnClickListener {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fragment_splash);
String path = Environment.getExternalStorageDirectory() + "/splash.mp4";
VideoView vid =(VideoView)findViewById(R.id.videoView1);
vid.setVideoURI(Uri.parse(path));
vid.setMediaController(new MediaController(this));
vid.start();
vid.requestFocus();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.pocetna, menu);
return true;
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_splash,
container, false);
return rootView;
}
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
}
}
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<VideoView
android:id="@+id/videoView1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
答案 0 :(得分:3)
在清单中添加它对我有用:
android.permission.READ_EXTERNAL_STORAGE
答案 1 :(得分:0)
我不确定,但有可能你需要而不是 vid.setVideoURI(Uri.parse(路径)); vid.setVideoPath(&#34; /sdcard/splash.mp4");