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);
}}