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

溫馨提示×

溫馨提示×

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

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

android多媒體類VideoView使用方法詳解

發布時間:2020-09-01 14:17:54 來源:腳本之家 閱讀:103 作者:liu_keke 欄目:移動開發

一、概述

VideoView類將視頻的顯示和控制集于一身,我們可以借助它完成一個簡易的視頻播放器。VideoView和MediaPlayer也比較相似。

二、VideoView的使用方法

它主要有以下幾種常用方法

android多媒體類VideoView使用方法詳解

步驟:

1.指定視頻文件的路徑,
2.接下來調用start()方法就可以開始播放視頻,pause()方法就會暫停播放,resume()方法就會重新播放

注:獲取視頻文件也需要運行時權限,所有相關邏輯也需要寫。
      最后不要忘記在AndroidManifest.xml文件中聲明用到的權限

下面是一個比較簡單的播放、暫停、重新播放的小demo

一、xml文件中的代碼

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:app="http://schemas.android.com/apk/res-auto" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:orientation="vertical" 
  tools:context="com.example.lk.playvideotest.MainActivity"> 
 
  <LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 
    <Button 
      android:id="@+id/play" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Play" 
      android:textAllCaps="false"/> 
    <Button 
      android:id="@+id/pause" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Pause" 
      android:textAllCaps="false"/> 
    <Button 
      android:id="@+id/replay" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="RePlay" 
      android:textAllCaps="false"/> 
  </LinearLayout> 
  <VideoView 
    android:id="@+id/video_view" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" /> 
 
</LinearLayout> 

 二、activity中的代碼

public class MainActivity extends AppCompatActivity implements View.OnClickListener { 
  private VideoView videoView; 
 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    videoView = (VideoView) findViewById(R.id.video_view); 
    Button play = (Button) findViewById(R.id.play); 
    Button pause = (Button) findViewById(R.id.pause); 
    Button replay = (Button) findViewById(R.id.replay); 
 
    play.setOnClickListener(this); 
    pause.setOnClickListener(this); 
    replay.setOnClickListener(this); 
    if (ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { 
      ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 1); 
    } else { 
      initVideoPath(); 
    } 
  } 
 
  private void initVideoPath() { 
    File file = new File(Environment.getExternalStorageDirectory(), "movie.mp4"); 
    videoView.setVideoPath(file.getPath());//指定視頻文件的路徑 
  } 
 
  @Override 
  public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { 
 
    switch (requestCode) { 
      case 1: 
        if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { 
          initVideoPath(); 
        } else { 
          Toast.makeText(this, "拒絕權限將無法使用程序", Toast.LENGTH_SHORT).show(); 
          finish(); 
        } 
        break; 
      default: 
 
    } 
  } 
 
  @Override 
  public void onClick(View v) { 
    switch (v.getId()) { 
      case R.id.play: 
        if (!videoView.isPlaying()) { 
          videoView.start();//開始播放 
        } 
        break; 
      case R.id.pause: 
        if (!videoView.isPlaying()) { 
          videoView.pause();//暫停播放 
        } 
        break; 
      case R.id.replay: 
        if (!videoView.isPlaying()) { 
          videoView.resume();//重新播放 
        } 
        break; 
    } 
 
  } 
 
  @Override 
  protected void onDestroy() { 
    super.onDestroy(); 
    if (videoView != null) { 
      videoView.suspend();//將VideoView所占用的資源釋放掉 
    } 
  } 
} 

三、聲明權限

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 

VideoView并不是一個萬能的視頻播放工具類,如果使用它,編寫一個功能十分強大的視頻播放器是不太現實的。VideoView適用于一些游戲的片頭動畫,或者某個應用的視頻宣傳。

向AI問一下細節

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

AI

正镶白旗| 嵊州市| 健康| 正宁县| 长子县| 昔阳县| 康保县| 泾源县| 巴马| 项城市| 偏关县| 尖扎县| 夏邑县| 河间市| 柳州市| 女性| 遂川县| 延川县| 正镶白旗| 衡山县| 册亨县| 嘉义市| 武乡县| 章丘市| 金阳县| 类乌齐县| 环江| 贡觉县| 富民县| 南召县| 凌云县| 随州市| 钟祥市| 石狮市| 兴城市| 临汾市| 金沙县| 安庆市| 云龙县| 大余县| 察隅县|