0

我添加了用于在我的应用中显示广告的 admob 代码。当我在模拟器中运行应用程序时,它会打开启动画面,然后应用程序突然退出并显示“不幸的是,您的应用程序已停止”。我不知道为什么它会显示。在添加 admob 代码之前效果很好。我也添加了代码。帮我解决这个问题。

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout 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/background2" >


    <ScrollView
    android:id="@+id/scrollView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_centerInParent="true"
    android:scrollbars="none">
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:orientation="vertical" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="60dp"
        android:background="@null"
        android:padding="30dp"
        android:src="@drawable/menu1"
        android:contentDescription="@string/image_desc" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageButton1"
        android:background="@null"
        android:padding="30dp"
        android:src="@drawable/menu2"
        android:contentDescription="@string/image_desc" />

    <ImageButton
        android:id="@+id/imageButton3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageButton2"
        android:background="@null"
        android:padding="30dp"
        android:src="@drawable/menu3"
        android:contentDescription="@string/image_desc" />

    <ImageButton
        android:id="@+id/imageButton4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageButton3"
        android:background="@null"
        android:padding="30dp"
        android:src="@drawable/menu4"
        android:contentDescription="@string/image_desc" />

     <ImageButton
        android:id="@+id/imageButton5"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageButton4"
        android:background="@null"
        android:padding="30dp"
        android:src="@drawable/menu5"
        android:contentDescription="@string/image_desc" />       
     </LinearLayout>
     </ScrollView>
     <com.google.ads.AdView android:id="@+id/adView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      ads:adUnitId="admob id"
      ads:adSize="SMART_BANNER"
      ads:loadAdOnCreate="true"/>
    </RelativeLayout>
4

2 回答 2

0

我认为我可以在您的应用程序中找到至少一个问题,您的 admob 规范中缺少一个重要字段,您必须在布局中添加该行:

ads:adUnitId="yourunitid"

为了获得您的单位 ID,您必须将您的应用程序注册到 admob 站点,此处: http: //www.admob.com/my_sites/create_site

您必须考虑的另一件事是,如果您刚刚插入应用程序,横幅通常仅在几个小时后才会显示。

最后,我建议您在布局中添加该行:

ads:testDevices="TEST_EMULATOR"

有了这个,你就告诉 admob 只向你的设备发送“测试”横幅(这可以防止被禁止的风险)

所以你的 adView 应该是这样的:

那么如果它没有帮助添加你的 logcat 输出。

于 2013-08-16T06:56:05.640 回答
0

通过此链接访问https://developers.google.com/mobile-ads-sdk/docs/#android添加 googleadmobsdk 可能会出现一些问题。

于 2013-08-16T06:02:58.847 回答