Help Center Manage Your Account Ad Tag

How do I display mobile ads using Android WebView?

For mobile ad serving to display ads in native Android applications, you can use WebView (see also WebView API). Below is an example:

Add WebView in the layout

Here is an example WebView element in the activity layout:

Require Internet permission in the manifest


    
    ...

Setup WebView

Here is how to display the ad tag via WebView:
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.setBackgroundColor(Color.TRANSPARENT);
String url = "https://g.adspeed.net/ad.php?do=js&zid=xxx....";
String html = "<html><body style='margin:0;padding:0;'><scri"+"pt type='text/javascript' src='"+url+"'></scr"+"ipt></body></html>";
myWebView.loadData(html, "text/html", "utf-8");
Print Was this helpful? Yes / No

Other Articles in Ad Tag

This section describes the ad tag (serving code) with basic and advanced settings. It includes common ad serving setup instructions and answers frequently asked questions when integrating the ad tag into your site, blog or app.

Cannot find an answer for your question? Ask our Customer Care team

Related