1

私はadmobsdkを使用し、外部jarとして追加しました。xmlで指定しました

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<TextView android:id="@+id/headerfield"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<ListView android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

<com.google.ads.AdView 
    android:id="@+id/ad"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"    
    ads:adUnitId="Publisher Id"
    ads:loadAdOnCreate="true" />    
</LinearLayout>

マニフェスト

<activity android:name="com.google.ads.AdActivity"
    android:configChanges="keyboard|keyboardHidden|orientation"/>

しかし、グラフィカルモードでは、エラーログが表示されます。

com.google.ads.AdView - the following class could not be instantiated. 

プログラムの中でその上映

configChangesを使用してAndroidManifest.xmlでAdActivityを宣言する必要があります。

4

3 に答える 3

5

ドキュメントから、アクティビティに追加のconfigChangesを含める必要があります(4.3.1以降を使用していると仮定)。

<activity android:name="com.google.ads.AdActivity"
          android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

screenSizeとsmallestScreenSizeが認識されない問題が発生した場合は、aganistAndroid3.2以降をコンパイルする必要があります。4.1.1から新しいバージョンへの移行の詳細については、この移行ブログの投稿を確認してください(6.0.0への移行にも同じことが当てはまります)。

于 2012-05-04T15:38:27.110 に答える
2

AdMobライブラリもエクスポートしましたか?

[プロジェクトのプロパティ]>[Javaビルドパス]>[注文とエクスポート]に移動します

admob.jarの横にある小さなボックスがオンになっていることを確認します。そうでない場合は、そうしてください。

于 2012-05-04T11:26:02.517 に答える
0

誰かがまだこのスレッドを表示している場合は、ビューをレンダリングしているAPIレベルが17未満であるかどうかを確認してください。私にとっては17で機能しました。グラフィカルレイアウトのすぐ上にある小さなドロイドを使用して変更できます。

于 2015-07-01T15:57:03.010 に答える