3

我是 Ads 新手,并且能够在我的布局中使用下面的代码成功地将我的第一个广告添加到我的 android 应用程序中。

我的布局.xml

<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" >

<com.google.ads.AdView 
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adUnitId="xxx"
    ads:adSize="BANNER"
    ads:loadAdOnCreate="true"/>

由于我的应用程序中有多个布局,因此我将常见的 AdView 属性(例如 adSize、adUnitId 等)移动到了 styles.xml 以减少代码大小。但是,在此更改之后,我遇到了类似的错误 error: Error: No resource found that matches the given name: attr 'ads:adUnitId'. error: Error: No resource found that matches the given name: attr 'ads:adSize'. error: Error: No resource found that matches the given name: attr 'ads:loadAdOnCreate'.

样式.xml

<resources xmlns:android="http://schemas.android.com/apk/res/android"
           xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" >

    <style name="MyAdView">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="ads:adSize">BANNER</item>
        <item name="ads:adUnitId">xxx</item>
        <item name="ads:loadAdOnCreate">true</item>
    </style>

</resources>

我的android :xxx 标签没有问题,问题似乎只出在广告:xxx 上。为了使用 com.google.ads 命名空间,我还应该做些什么。由于当我在布局中有代码时一切正常,我想我拥有在我的应用程序中添加广告所需的一切(AdMob SDK、构建路径中的 admob 库以及订单和导出等)。请建议。提前致谢。

4

1 回答 1

1

我认为您只能将样式资源用于与样式相关的属性,如果您想分解id,您应该使用字符串资源,例如

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="admob_id">XXX</string>
</resources>
于 2013-04-13T12:30:12.943 回答