Android : How to extract only html code from webview

on Thursday, August 7, 2014


I want to show only different categories or news under this social media category. I don't want to show any advertisements or logos or anything like that. How to do that?


I am using webview.


This is my code:



import android.annotation.SuppressLint;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView;
import android.webkit.WebViewClient;

@SuppressLint("SetJavaScriptEnabled")
public class Mobile extends Fragment {

final static String myAddr = "http://something.com";
String myUrl;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_games, container, false);
WebView webView = (WebView) view.findViewById(R.id.webView1);

webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new MyWebViewClient());

if(myUrl == null){
myUrl = myAddr;
}
webView.loadUrl(myUrl);

return view;

}

private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
myUrl = url;
view.loadUrl(url);
return true;
}
}}

0 comments:

Post a Comment