How can I integrate a Facebook page in my application with WebView
, I did it in a basic way but it only shows me the header of the page, when I start to scroll down it stays there in the header.
This is my code:
WebView myWebView = (WebView) this.findViewById(R.id.webView);
myWebView.setWebViewClient(new WebViewClient());
//myWebView.loadUrl("https://www.adventistas.org/es/");
myWebView.setWebViewClient(new Callback());
myWebView.loadUrl("https://www.facebook.com/adventistasrosarioeste/?ref=br_tf");
How could I make my page that is in the WebView
scroll?