您好,登錄后才能下訂單哦!
小編給大家分享一下Android如何使用VideoView播放視頻,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
給Android VideoView一個文件目錄,就可以直接播放智能設(shè)備中的視頻文件,現(xiàn)在以播放事先用手機拍好并重命名的視頻文件test.mp4為例。
(1)需要在布局文件中寫一個ViedoView:
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.videoview.MainActivity" > <VideoView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/videoView" /> </RelativeLayout>
(2)不要忘記在AndroidManifest.xml文件中添加讀寫外部存儲的權(quán)限:
<uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
(3)在java代碼中給VideoView設(shè)置文件目錄,然后start播放:
public class MainActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); VideoView videoView = (VideoView) findViewById(R.id.videoView); // 獲得的path等于:/storage/emulated/0/DCIM File path = Environment .getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM); // 拼接完整路徑 File f = new File(path, "/Camera/test.mp4"); // 此時的f.getAbsolutePath()=/storage/emulated/0/DCIM//\Camera/test.mp4 videoView.setVideoPath(f.getAbsolutePath()); // 開始播放視頻 videoView.start(); // VideiView獲焦點 // videoView.requestFocus(); } }
以上是“Android如何使用VideoView播放視頻”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。