91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現播放視頻

發布時間:2021-08-11 10:17:27 來源:億速云 閱讀:179 作者:小新 欄目:移動開發

這篇文章將為大家詳細講解有關Android如何實現播放視頻,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

一、通過intent的方式,調用系統自帶的播放器

  Uri uri = Uri.parse("/storage/emulated/0/DCIM/Camera/20170521_200117.mp4");  
 //調用系統自帶的播放器 
  Intent intent = new Intent(Intent.ACTION_VIEW); 
  intent.setDataAndType(uri, "/storage/emulated/0/DCIM/Camera/20170521_200117.mp4"); 
  startActivity(intent);

二、使用VideoView

布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/activity_video_play_by_vv"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 <VideoView
  android:id="@+id/video_view"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>


</RelativeLayout>

Activity

public class VideoPlayByVVActivity extends AppCompatActivity {

 private VideoView mVideoView;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
//  requestWindowFeature(Window.FEATURE_NO_TITLE); //去掉 title
//  setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); //設置全屏
//  getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); //設置屏幕常亮
  setContentView(R.layout.activity_video_play_by_vv);
  mVideoView = (VideoView) findViewById(R.id.video_view);

  init();
 }

 private void init() {

  String path = "/storage/emulated/0/DCIM/Camera/20170521_200117.mp4";

  Uri uri = Uri.parse(path);

  mVideoView.setVideoPath(path);

  mVideoView.start();
  mVideoView.requestFocus();

 }
}

三、MediaPlayer + SurfaceView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/activity_video_play_by_sur"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
 <SurfaceView
  android:id="@+id/surface_view"
  android:layout_width="180dp"
  android:layout_height="wrap_content"/>
 <LinearLayout
  android:layout_alignParentBottom="true"
  android:layout_width="match_parent"
  android:layout_height="40dp">


  <Button
   android:id="@+id/stop"
   android:text="stop"
   android:layout_weight="1"
   android:layout_width="0dp"
   android:layout_height="match_parent"/>
  <Button
   android:id="@+id/play"
   android:text="play"
   android:layout_weight="1"
   android:layout_width="0dp"
   android:layout_height="match_parent"/>
  <Button
   android:id="@+id/pasue"
   android:text="pasue"
   android:layout_weight="1"
   android:layout_width="0dp"
   android:layout_height="match_parent"/>

 </LinearLayout>
</RelativeLayout>

Activity

public class VideoPlayBySurActivity extends AppCompatActivity implements View.OnClickListener {

 private SurfaceView mSurfaceView;
 private MediaPlayer mMediaPlayer;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_video_play_by_sur);
  mSurfaceView = (SurfaceView) findViewById(R.id.surface_view);
  findViewById(R.id.stop).setOnClickListener(this);
  findViewById(R.id.pasue).setOnClickListener(this);

  findViewById(R.id.play).setOnClickListener(this);

  init();
 }

 private void init() {
  mMediaPlayer = new MediaPlayer();

  mSurfaceView.getHolder().addCallback(new SurfaceHolder.Callback() {
   @Override
   public void surfaceCreated(SurfaceHolder holder) {
    play();
   }

   @Override
   public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {

   }

   @Override
   public void surfaceDestroyed(SurfaceHolder holder) {

   }
  });
 }

 @Override
 public void onClick(View v) {
  switch (v.getId()){
   case R.id.stop:
    stop();
    break;
   case R.id.play:
    if(!mMediaPlayer.isPlaying()){
     play();
    }
    break;
   case R.id.pasue:
    pasue();
    break;

  }
 }


 public void stop(){
  if(mMediaPlayer.isPlaying()){
   mMediaPlayer.stop();
  }
 }

 public void pasue(){
  if(mMediaPlayer.isPlaying()){
   mMediaPlayer.pause();
  }else{
   mMediaPlayer.start();
  }
 }

 public void play(){

  String path = "/storage/emulated/0/DCIM/Camera/20170521_200117.mp4";
  try {
   mMediaPlayer.reset();
   mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
   //設置需要播放的視頻
   mMediaPlayer.setDataSource(this, Uri.parse(path));
   //把視頻畫面輸出到SurfaceView
   mMediaPlayer.setDisplay(mSurfaceView.getHolder());
   mMediaPlayer.prepare();
   mMediaPlayer.start();

  } catch (IOException e) {
   e.printStackTrace();
  }
 }
}

四、 MediaPlayer + TextureView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/activity_video_play_by_textrue_view"
 android:layout_width="match_parent"
 android:layout_height="match_parent">


 <TextureView
  android:id="@+id/texture_view"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>

 <ImageView
  android:id="@+id/video_image"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:src="@drawable/all_darkbackground"/>
</RelativeLayout>

Activity

public class VideoPlayByTextrueViewActivity extends AppCompatActivity implements MediaPlayer.OnPreparedListener, MediaPlayer.OnInfoListener, MediaPlayer.OnBufferingUpdateListener {

 private TextureView mTextureView;
 private ImageView mImageVideo;
 private Surface mSurface;
 private MediaPlayer mMediaPlayer;
 private static String path = "/storage/emulated/0/DCIM/Camera/20170521_200117.mp4";

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_video_play_by_textrue_view);

  mTextureView = (TextureView) findViewById(R.id.texture_view);

  mImageVideo = (ImageView) findViewById(R.id.video_image);

  init();
 }

 private void init() {

  mTextureView.setSurfaceTextureListener(new TextureView.SurfaceTextureListener() {
   @Override
   public void onSurfaceTextureAvailable(SurfaceTexture surfaceTexture, int width, int height) {
    mSurface = new Surface(surfaceTexture);

    Log.e("tag", "---- onSurfaceTextureAvailable");

    play();
   }

   @Override
   public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
    Log.e("tag", "---- onSurfaceTextureSizeChanged");
   }

   @Override
   public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
    mTextureView=null;
    mSurface=null;
    mMediaPlayer.stop();
    mMediaPlayer.release();
    return false;
   }

   @Override
   public void onSurfaceTextureUpdated(SurfaceTexture surface) {

   }
  });


 }



 public void play(){


  mMediaPlayer = new MediaPlayer();

  try {
   mMediaPlayer.setDataSource(getApplicationContext(), Uri.parse(path));
   mMediaPlayer.setSurface(mSurface);
   mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);

   mMediaPlayer.setOnPreparedListener(this);
   mMediaPlayer.setOnInfoListener(this);
   mMediaPlayer.setOnBufferingUpdateListener(this);

   mMediaPlayer.prepareAsync();

  } catch (IOException e) {
   e.printStackTrace();
  }

 }

 @Override
 public void onPrepared(MediaPlayer mp) {

  mImageVideo.setVisibility(View.GONE);
  mMediaPlayer.start();
 }

 @Override
 public boolean onInfo(MediaPlayer mp, int what, int extra) {
  return false;
 }

 @Override
 public void onBufferingUpdate(MediaPlayer mp, int percent) {

 }
}

關于“Android如何實現播放視頻”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保定市| 武穴市| 山丹县| 荥经县| 苗栗市| 屯门区| 习水县| 宜章县| 武鸣县| 惠东县| 津南区| 揭东县| 信丰县| 青海省| 民县| 巴林右旗| 罗山县| 昌平区| 钟祥市| 米林县| 扶余县| 榆中县| 林州市| 桐柏县| 若尔盖县| 芮城县| 上虞市| 浦县| 周口市| 磐安县| 潢川县| 凤台县| 凉城县| 镇巴县| 建始县| 邢台县| 克拉玛依市| 美姑县| 房山区| 潮州市| 玛多县|