Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I added a AdModAdsView to my app. It seems to work.... however, in the Logcat I have the following error:

08-02 18:55:41.170: E/Ads(17498): An error occurred while destroying an AdWebView:
08-02 18:55:41.170: E/Ads(17498): java.lang.NullPointerException
08-02 18:55:41.170: E/Ads(17498):   at android.webkit.WebView.setWebViewClient(WebView.java:4361)
08-02 18:55:41.170: E/Ads(17498):   at     com.google.ads.internal.AdWebView.destroy(SourceFile:252)
08-02 18:55:41.170: E/Ads(17498):   at com.google.ads.internal.c$e.run(SourceFile:191)
08-02 18:55:41.170: E/Ads(17498):   at android.os.Handler.handleCallback(Handler.java:605)
08-02 18:55:41.170: E/Ads(17498):   at android.os.Handler.dispatchMessage(Handler.java:92)
08-02 18:55:41.170: E/Ads(17498):   at android.os.Looper.loop(Looper.java:137)
08-02 18:55:41.170: E/Ads(17498):   at android.app.ActivityThread.main(ActivityThread.java:4507)
08-02 18:55:41.170: E/Ads(17498):   at java.lang.reflect.Method.invokeNative(Native Method)
08-02 18:55:41.170: E/Ads(17498):   at java.lang.reflect.Method.invoke(Method.java:511)
08-02 18:55:41.170: E/Ads(17498):   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:790)
08-02 18:55:41.170: E/Ads(17498):   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
08-02 18:55:41.170: E/Ads(17498):   at dalvik.system.NativeStart.main(Native Method)

I followed this guideline.

 <com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/banner2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="a150183ee58a0ed"
    ads:loadAdOnCreate="true"
    android:orientation="vertical" >
</com.google.ads.AdView>
share|improve this question
Post the code where you are using AdWebView and accept some answers because no one will be willing to help you with 0% accept rate. – Erol Aug 2 '12 at 17:24
I don't have Java code...only XML. – Emaborsa Aug 2 '12 at 18:12
Please clarify: How can you not have a Java code and still get Exceptions in LogCat? – Erol Aug 2 '12 at 20:44
I mean that the Ads staff is only in XML, i didn't code it in java. If you look in the logCat, you see that the null pointer exception is in the android package, not i my classes – Emaborsa Aug 2 '12 at 21:02
I didn't solve it. Need your help. – Emaborsa Aug 15 '12 at 21:33
show 8 more comments

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.