⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 videoviewdemo.java

📁 Android的应用实例
💻 JAVA
字号:
package com.example.android.apis.media;import com.example.android.apis.R;import android.app.Activity;import android.graphics.PixelFormat;import android.net.Uri;import android.os.Bundle;import android.util.Log;import android.widget.MediaController;import android.widget.Toast;import android.widget.VideoView;public class VideoViewDemo extends Activity {    /**     * TODO: Set the path variable to a streaming video URL or a local media     * file path.     */    private String path = "";    private VideoView mVideoView;    @Override    public void onCreate(Bundle icicle) {        super.onCreate(icicle);        setContentView(R.layout.videoview);        mVideoView = (VideoView) findViewById(R.id.surface_view);        if (path == "") {            // Tell the user to provide a media file URL/path.            Toast.makeText(                    VideoViewDemo.this,                    "Please edit VideoViewDemo Activity, and set path"                            + " variable to your media file URL/path",                    Toast.LENGTH_LONG).show();        } else {            /*             * Alternatively,for streaming media you can use             * mVideoView.setVideoURI(Uri.parse(URLstring));             */            mVideoView.setVideoPath(path);            mVideoView.setMediaController(new MediaController(this));            mVideoView.requestFocus();        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -