I have render android WebView in GVR FrameLayout to load my webpages but its experience is jumpy and scrolling is not smooth. i am unable to read it continuously.
frameLayout = new GVRFrameLayout(this); frameLayout.setBackgroundColor(Color.TRANSPARENT); View.inflate(this, R.layout.activity_irisvision_browser, frameLayout); mWebView = (WebView) frameLayout.findViewById(R.id.webView); if (mWebView != null) { mWebView.loadUrl("http://theirisvision.com/media/", preventCaching); }
And i inflate the Android webview in GVRFrameLayout.