我遵循了一些教程/stackoverflow 线程来学习如何在Admob
我的 UI 底部添加横幅。
我已将 adMob sdk 添加到库中,将以下内容添加到我想要在其上显示广告的 UI 的 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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000">
<com.google.ads.AdView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/adMob"
android:layout_alignParentBottom="true"
ads:adUnitId="YOUR AdMob publisher ID"
ads:adSize="BANNER"/>
然后,我将以下内容添加到此 UI 的 java 代码中
AdView adview = (AdView)findViewById(R.id.adView);
AdRequest re = new AdRequest();
re.setTesting(true);
adview.loadAd(re);
我遇到的问题是我没有调用 xml "adView"
。我尝试了几个不同版本的 Java 代码(每个教程都有些不同),但都导致了类似的 Java 错误。我错过了什么?