Coder Social home page Coder Social logo

Comments (3)

lucasferreira avatar lucasferreira commented on June 2, 2024

Hi @razat2013

It's seems to be an Android problem, not module fault.

Can you try this: http://stackoverflow.com/questions/17259636/enabling-html5-video-playback-in-android-webview

I guest that you have to put in your AndroidManifest.xml file this attribute:
android:hardwareAccelerated="true"

Att.

from react-native-webview-android.

kitolog avatar kitolog commented on June 2, 2024

I'm using html5 player in webview and all works fine.
At first, add android:hardwareAccelerated="true" to manifest file
At second, I modified Java code in RNWebView.java file:

public RNWebView(ReactContext reactContext) {
        super(reactContext);
        mEventDispatcher = reactContext.getNativeModule(UIManagerModule.class).getEventDispatcher();
        mWebViewClient = new EventWebClient();
        this.getSettings().setJavaScriptEnabled(true);
        this.getSettings().setDomStorageEnabled(true);
        this.getSettings().setPluginState(WebSettings.PluginState.ON);
        this.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);

        this.getSettings().setLoadWithOverviewMode(true);
        this.getSettings().setUseWideViewPort(true);
        this.getSettings().setBuiltInZoomControls(true);
        this.setInitialScale(1);

        this.setWebChromeClient(new WebChromeClient());

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            this.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
        }

        this.setWebViewClient(mWebViewClient);
}

from react-native-webview-android.

lucasferreira avatar lucasferreira commented on June 2, 2024

Thanks @kitolog for the tips ;)

from react-native-webview-android.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.