誰でも私を助けることができます、私は過去2日間からAndroidにadmobを実装しようとしていますが、次のエラーメッセージが表示されます-
08-08 19:05:33.362: W/webcore(3228): 最初のレイアウトの後に viewWidth を取得できません 08-08 19:10:51.632: W/dalvikvm(3328): VFY: ダイレクト メソッド 3204 を解決できません: Landroid/webkit/WebView;. (Landroid/content/Context;Landroid/util/AttributeSet;IZ)V 08-08 19:10:51.662: I/webclipboard(3328): clipservice: android.sec.clipboard.ClipboardExManager@40534500 08-08 19:10: 52.142: I/CordovaLog(3328): ログ レベルを DEBUG(3) に変更します 08-08 19:10:52.142: I/CordovaLog(3328): useBrowserHistory=false の設定が見つかりました 08-08 19:10:52.142: D/ CordovaLog(3328): useBrowserHistory=false 08-08 19:10:52.152 の設定が見つかりました: E/dalvikvm(3328): メソッド org.apache.cordova.CordovaWebViewClient から参照されるクラス 'android.webkit.WebResourceResponse' が見つかりませんでした。 generateWebResourceResponse 08-08 19:10:52.152: W/dalvikvm (3328): VFY: Lorg/apache/cordova/CordovaWebViewClient で新しいインスタンス 467 (Landroid/webkit/WebResourceResponse;) を解決できません。08-08 19:10:52.152: W/dalvikvm(3328): VFY: 署名で参照されているクラスが見つかりません (Landroid/webkit/WebResourceResponse;) 08-08 19:10:52.182: W/dalvikvm(3328): VFY : 署名で参照されているクラスが見つかりません (Landroid/webkit/WebResourceResponse;) 08-08 19:10:52.182: W/dalvikvm(3328): VFY: 署名で参照されているクラスが見つかりません (Landroid/webkit/WebResourceResponse;) 08 -08 19:10:52.182: W/dalvikvm (3328): VFY: 仮想メソッド 3225 を解決できません: Landroid/webkit/WebViewClient;.shouldInterceptRequest (Landroid/webkit/WebView;Ljava/lang/String;)Landroid/webkit/ WebResourceResponse; 08-08 19:10:52.182: D/DroidGap(3328): DroidGap.init() 08-08 19:10:52.192: D/CordovaWebView(3328): >>> loadUrl (file:///android_asset/www/index.html) 08-08 19:10:52.192: D/PluginManager(3328): init() 08-08 19:10:52.212: D/CordovaWebView(3328): >>> loadUrlNow() 08-08 19:10:52.272: E/Ads(3328): com.google.ads.AdActivity が見つかりませんでした。AndroidManifest.xml に登録されていることを確認してください。08-08 19:10:52.272: E/Ads(3328): AndroidManifest.xml で configChanges を使用して AdActivity を宣言する必要があります。08-08 19:10:52.282: 私/webclipboard(3328): クリップサービス: android.sec.clipboard.ClipboardExManager@405512e0 08-08 19:10:52.332: 私/webclipboard(3328): クリップサービス: android.sec.clipboard .ClipboardExManager@405512e0 08-08 19:10:52.902: D/AndroidRuntime(3328): VM 08-08 19:10:52.902 をシャットダウンしています: W/dalvikvm(3328): threadid=1: キャッチされない例外で終了するスレッド (グループ=0x40018578) 08-08 19:10:52.902: E/AndroidRuntime(3328):
Following is the code of my main java file -
import org.apache.cordova.*;
import com.google.ads.*;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.support.v4.app.NavUtils;
import android.widget.*;
public class Albania extends DroidGap {
private AdView adView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
super.setIntegerProperty("loadUrlTimeoutValue", 70000);
adView = new AdView(this, AdSize.BANNER, "a1502224a0ab1f8");
LinearLayout layout = (LinearLayout) findViewById(R.id.adView);
layout.addView(adView);
adView.loadAd(new AdRequest()); }
ここに私の activity_appname.xml があります
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".Albania" />
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, S567041ba118d"
ads:loadAdOnCreate="true"/>
</RelativeLayout>
ここに私のアンドロイドmanifest.xmlファイルがあります
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Albania"
android:label="@string/title_activity_albania"
android:configChanges="orientation|keyboardHidden|orientation|keyboard|screenSize|uiMode|screenLayout|locale"
android:hardwareAccelerated="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</application>
</manifest>