亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

安卓飛機大戰(八) 添加視頻文件

發布時間:2020-07-21 01:52:31 來源:網絡 閱讀:706 作者:JustMetU 欄目:移動開發

在安卓應用里添加一個視頻文件,需要在res中添加一個名為raw(不能亂起)的文件夾,里面存放你要播放的視頻文件


代碼如下:

1.在lanyout中添加一個videoview

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF"
    android:orientation="vertical" >

    <VideoView
        android:id="@+id/video1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</LinearLayout>




2.在MainActivity中:


import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnCompletionListener;
import android.net.Uri;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import android.widget.VideoView;

public class MainActivity extends Activity {

    
    private VideoView video;
    private Button button1;
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);    
        setContentView(R.layout.begin_video);
        
                video=(VideoView)findViewById(R.id.video1);
                button1=(Button)findViewById(R.id.button1);
                Uri uri=Uri.parse("android.resource://com.example.agame/"+R.raw.startvideo);//獲得uri                video.setVideoURI(uri);//指定要播放的視頻

                video.requestFocus();讓video獲得焦點
                try{
                    video.start();//開始播放視頻
                }catch(Exception e){
                    e.printStackTrace();
                }
                video.setOnCompletionListener(new OnCompletionListener() {
                    
                    
                    public void onCompletion(MediaPlayer arg0) {
                        
                        finish();//結束
                    }
               });

}



這樣就可以播放視頻啦!!!

向AI問一下細節

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

AI

寻乌县| 奉节县| 高青县| 化州市| 达拉特旗| 漳浦县| 根河市| 库伦旗| 喀什市| 宣汉县| 苏州市| 寿宁县| 柏乡县| 天柱县| 无锡市| 双桥区| 海淀区| 紫阳县| 朝阳市| 濮阳县| 长顺县| 德江县| 浮山县| 繁昌县| 建始县| 平邑县| 宜宾县| 丹棱县| 延津县| 奉新县| 福州市| 衡水市| 化隆| 桑植县| 吉安县| 安平县| 习水县| 茂名市| 凤城市| 普格县| 衢州市|