我只想尝试使用以下代码在我的应用中显示横幅:
XML文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/welcome"
android:layout_width="fill_parent"
android:orientation="vertical"
android:layout_height="fill_parent"
android:background="#00BFFF"
android:gravity="center_horizontal">
<!--Put form controls here-->
<LinearLayout
android:layout_weight="1" android:layout_gravity="top"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/createevent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/createSportEvent"
android:layout_marginTop="10dp"
android:background="@drawable/blue_button"
/>
<Button
android:id="@+id/joinevent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/joinSportEvent"
android:layout_marginTop="5dp"
android:background="@drawable/blue_button"
/>
<!-- <TextView -->
<!-- android:layout_width="fill_parent" -->
<!-- android:layout_height="wrap_content" -->
<!-- android:gravity="center" -->
<!-- android:text="@string/welcome" -->
<!-- android:textColor="#FFFFFF" -->
<!-- android:textSize="30sp" -->
<!-- android:layout_marginTop="60dp" /> -->
</LinearLayout>
<LinearLayout android:layout_weight="4"
android:layout_gravity="bottom"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<com.google.android.gms.ads.AdView xmlns:ads="http://schemas.android.com/apk/res-auto" android:id="@+id/adView"
android:layout_width="200dp"
android:layout_height="300dp"
ads:adUnitId="ca-app-pub-4655928626183886/8875858459"
ads:adSize="BANNER"
/>
</LinearLayout>
</LinearLayout>
JAVA文件:
AdView adView = (AdView) findViewById(R.id.adView);
AdRequest.Builder adRequestBuilder = new AdRequest.Builder();
adRequestBuilder.addTestDevice("005d82a31685xxxx");
adView.loadAd(adRequestBuilder.build());
我的Java_Buid_Path中有google-play-services.jar。
在我的Android_Manifest.xml中:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"android:theme="@android:style/Theme.Translucent" />
我已在adMob网站上添加了一个横幅到我的移动应用程序以获取adUnitId。
我不明白为什么没有展示横幅。
非常感谢您的帮助。
答案 0 :(得分:1)
这个问题可能有几个原因。
要找出导致问题的确切原因,请启动Activity
并过滤Logcat
“广告”。
它会告诉你导致问题的原因。
错误的ad-unit-id
旁边的一个非常常见的错误是,如果没有足够的空间来显示关于身高的banner
。确保你有足够的空间。请提供Update
LogCat
中的{{1}}内容。{/ 1>
但如果没有过滤后的logcat和XML,我就不能说更多..