1
使用此代碼看起來很完美,沒有任何錯誤BT不知道爲什麼,我的應用程序時墜毀,每次我跑我的應用程序..
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId= "idthatigotthroughadmob"
ads:loadAdOnCreate="true"
ads:adSize="BANNER"
/>
在android系統的manifest.xml
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application><activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation"
></activity> </application>
logcat的顯示
04-12 21:30:09.655: E/dalvikvm(272): Could not find class 'com.google.ads.AdView',
referenced from method com.project.hisaabkikitaab.MainActivity.onCreate
04-12 21:30:09.655: W/dalvikvm(272): VFY: unable to resolve check-cast 471 (Lcom/google
/ads/AdView;) in Lcom/project/hisaabkikitaab/MainActivity;
04-12 21:30:09.655: D/dalvikvm(272): VFY: replacing opcode 0x1f at 0x000e
04-12 21:30:09.655: D/dalvikvm(272): VFY: dead code 0x0010-02b9 in Lcom/project
/hisaabkikitaab/MainActivity;.onCreate (Landroid/os/Bundle;)V
04-12 21:30:09.815: D/AndroidRuntime(272): Shutting down VM
04-12 21:30:09.815: W/dalvikvm(272): threadid=1: thread exiting with uncaught
exception (group=0x4001d800)
04-12 21:30:09.845: E/AndroidRuntime(272): FATAL EXCEPTION: main
04-12 21:30:09.845: E/AndroidRuntime(272): java.lang.NoClassDefFoundError:
com.google.ads.AdView
04-12 21:30:09.845: E/AndroidRuntime(272): at
com.project.hisaabkikitaab.MainActivity.onCreate(MainActivity.java:42)
04-12 21:30:09.845: E/AndroidRuntime(272): at
.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
我已經補充說:(< LinearLayout xmlns:android =「http://schemas.android.com/apk/res/android」 xmlns:ads =「http://schemas.android.com/apk/lib/com.google.ads」 android :layout_width =「match_parent」 android:layout_height =「match_parent」 android:background =「@ drawable/backmage」 android:orientation =「vertical」 > – scripter
我已經通過那個開發人員頁面寫了我的代碼,知道我的應用程序正在發生什麼每當我開始崩潰..是否還有什麼我失蹤? – scripter
@scripter試試這個:你的項目中是否有一個'libs'文件夾?如果是這樣,那裏有'admob'圖書館嗎?如果你對其中的任何一個人說「否」,確保創建了一個'libs'文件夾(在'res'和'src'的同一級別,並將你的'admob'庫複製到那裏] Clean project and rebuild。 – Korcholis