我添加了用于在我的应用中展示广告的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>
答案 0 :(得分:0)
使用此链接访问https://developers.google.com/mobile-ads-sdk/docs/#android时,添加googleadmobsdk交叉检查可能会出现问题。
答案 1 :(得分:0)
我认为我可以在您的应用程序中找到至少一个问题,您在admob规范中缺少一个重要字段,您必须在布局中添加该行:
ads:adUnitId="yourunitid"
要获得您的单位ID,您必须将您的应用注册到admob网站,在此处:http://www.admob.com/my_sites/create_site
您必须考虑的另一件事是,如果您刚刚插入应用程序,横幅通常只会在几个小时后显示。
最后,我建议你在布局中添加该行:
ads:testDevices="TEST_EMULATOR"
有了这样你就是在撒谎,只向你的设备发送“测试”横幅(这可以防止风险被禁止)
所以你的adView应该是这样的:
然后如果它没有帮助添加你的logcat输出。