npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-videoview

v0.0.2

Published

react native中的video组件,现在仅支持android端,可以显示视频 ## Install

Readme

react-native-videoview

react native中的video组件,现在仅支持android端,可以显示视频

Install

npm install --save react-native-videoview

Automatically link

With React Native 0.27+

react-native link react-native-videoview

如果上面自动link没起作用,那么请手动配置:

Android

  • in android/app/build.gradle:
dependencies {
    ...
    compile "com.facebook.react:react-native:+"  // From node_modules
+   compile project(':react-native-videoview')
}
  • in android/settings.gradle:
...
include ':app'
+ include ':react-native-videoview'
+ project(':react-native-videoview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-videoview/android')

With React Native 0.29+

  • in MainApplication.java:
+ import com.video.module.VideoViewPackage;

  public class MainApplication extends Application implements ReactApplication {
    //......

    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
          new MainReactPackage(),
+         new VideoViewPackage(),
      );
    }

    ......
  }

##Usage ###基本用法

import { VideoView } from 'react-native-videoview'

<VideoView
            ref={(video) => { this.video = video }}
            style={{ height: 250, width: 380 }}
            source={
                {
                    url: 'https://your url',
                    headers: {
                        'refer': 'myRefer'
                    }
                }
            }
            onPrepared={this._onPrepared}
            onCompletion={() => {
                console.log("JS onCompletion");
            }}
            onError={(e) => {
                console.log("what=" + e.what + " extra=" + e.extra);
            }}
            onBufferUpdate={(buffer) => {
                console.log("JS buffer = " + buffer);
            }}
            onProgress={(progress) => {
                console.log("JS progress = " + progress);
                this.setState({
                    time: progress
                });
            }}
        />

###视频事件监听

	//视频预加载
    _onPrepared(duration) {//毫秒
        console.log("JS duration = " + duration);
        this.setState({
            totalTime: duration,
        });
    }
	//视频暂停
    _onPressPause() {
        this.video.pause();
    }
	//视频开始
    _onPressStart() {
        this.video.start();
    }
	//视频快进
    _onPressSeekTo() {
        var millSecond = this.state.time + 1000;
        this.video.seekTo(millSecond);
    }
    
    //视图
    TouchableOpacity style={{ marginLeft: 10 }} onPress={this._onPressPause.bind(this)}>
         <Text>暂停</Text>
    </TouchableOpacity>
    <TouchableOpacity style={{ marginLeft: 10 }} onPress={this._onPressStart.bind(this)}>
         <Text>开始</Text>
    </TouchableOpacity>
    <TouchableOpacity style={{ marginLeft: 10 }} onPress={this._onPressSeekTo.bind(this)}>
         <Text>快进</Text>
	</TouchableOpacity>

以上是所有用法,暂时基本用处可以满足 ##keywords

###react-native video videoview