我有一个VideoView
. 它正在播放来自 url 的视频。我正在做的是为了玩得顺畅,我ProgressDialog
在活动开始时放了一个。并在里面解散它,onPreparedListener
这样它就可以很好地流畅地播放。但它仍然没有帮助。视频播放就像播放 10-20 秒并停止 5-10 秒,它会继续播放。我在 Google play Workout Trainer上看到了一个应用程序,如果用户开始观看视频,它会显示horizontal progress bar
缓冲视频,然后无论是慢速连接还是 WI-FI 都可以顺利播放。它只需要progressbar
在开始视频之前完成。我想知道如何在我的应用程序中实现相同的功能?
我在做什么如下:
public class StartExerciseActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.show_exercise);
tileTextView = (TextView) findViewById(R.id.titleText);
timerTextView = (TextView) findViewById(R.id.timertxt);
timerRemainTextView = (TextView) findViewById(R.id.timeremaintxt);
videoView = (VideoView) findViewById(R.id.video_view);
stopButton = (Button) findViewById(R.id.stopbut);
pauseButton = (Button) findViewById(R.id.pausesbut);
progressDialog = ProgressDialog.show(StartExerciseActivity.this, "",
"Buffering video...", true);
getWindow().setFormat(PixelFormat.TRANSLUCENT);
tileTextView.setText(Constant.NEWS_TITLE);
timerTextView.setText(Constant.VIDEO_TIME);
video_url = Constant.VIDEO_NAME;
try {
Uri video = Uri.parse(video_url);
// videoView.setMediaController(mediaController);
videoView.setVideoURI(video);
videoView.setOnPreparedListener(new OnPreparedListener() {
public void onPrepared(MediaPlayer mp) {
progressDialog.dismiss();
videoView.start();
updateSeekProgress();
RelativeLayout.LayoutParams videoviewlp = new RelativeLayout.LayoutParams(400, 400);
videoviewlp.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
videoviewlp.addRule(RelativeLayout.CENTER_VERTICAL, RelativeLayout.TRUE);
videoView.setLayoutParams(videoviewlp);
videoView.invalidate();
// DisplayMetrics metrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics);
// android.widget.LinearLayout.LayoutParams params = (android.widget.LinearLayout.LayoutParams) videoView.getLayoutParams();
// params.width = metrics.widthPixels;
// params.height = metrics.heightPixels;
// params.leftMargin = 0;
// videoView.setLayoutParams(params);
}
});
} catch (Exception e) {
progressDialog.dismiss();
System.out.println("Video Play Error :" + e.getMessage());
}
pauseButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
if (count == 0) {
videoView.pause();
count = 1;
pauseButton.setBackgroundResource(R.drawable.playbut);
} else if (count == 1) {
videoView.start();
pauseButton.setBackgroundResource(R.drawable.pausebut);
count = 0;
}
}
});
stopButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
videoView.stopPlayback();
pauseButton.setBackgroundResource(R.drawable.playbut);
}
});
}
请帮忙。谢谢。