Admob not work when i use client in the web view and work without it. I try many thing but no result. this the code i use

package com.jms.AdmobExample; public class AdmobExample extends Activity {

final Activity activity = this;
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    this.getWindow().requestFeature(Window.FEATURE_PROGRESS);
    setContentView(R.layout.main);



     AdView adview = (AdView)findViewById(R.id.adView);

        // Initiate a generic request to load it with an ad
        AdRequest re = new AdRequest();
        //re.setTesting(true);
        re.setGender(AdRequest.Gender.FEMALE); 
        adview.loadAd(re);

        WebView webview = new WebView(this);
        webview.getSettings().setJavaScriptEnabled(true);
        // 
        webview.setWebViewClient(new WebViewClient());
        webview.loadUrl("http://www.google.com");
        setContentView(webview);
}}
link|improve this question
What are you trying to achieve? You are loading the ad into your main.xml layout, but then you're removing the layout in favor of the WebView, so the ad won't display. – Eric Leichtenschlag Jan 4 at 18:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.