无法实例化以下类: - com.google.ads.AdView

时间:2014-04-09 11:30:00

标签: java android

我无法运行我的APP ...这是activitymain_xml中的问题。有人能帮助我吗? 这是layout activity

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
tools:context="com.denisprojects.shoppinglist.MainActivity"
tools:ignore="MergeRootFrame" >



   <Button
    android:id="@+id/button2"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="80dp"
    android:layout_height="50dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:background="@drawable/add" />
<com.google.ads.AdView
    android:id="@+id/adsView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/button2"
    ads:adUnitId="ca-app-pub-5426545253667840/7625762411"
    ads:adSize="BANNER"
    ads:loadAdOnCreate="true" />
</RelativeLayout>

我已经看到其他人的任务,但我仍然无法让我的APP运行。对不起我的英文,希望你能理解。

2 个答案:

答案 0 :(得分:0)

确保您还在AndroidManifest中声明了AdActivity

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

答案 1 :(得分:0)

您可能忘记在项目的构建路径中添加Google广告库文件。

enter image description here