Android - Admob问题!

时间:2010-08-31 22:48:29

标签: android admob

所以我想尝试使用admob向我的应用添加一个简单的广告。我已经按照教程使用了SDK,但我遇到了一个错误。

这是错误:

Multiple annotations found at this line:
- ERROR No resource identifier found for attribute 'secondaryTextColor' in package 
 'man.utd.headlines.man.utd'
- ERROR No resource identifier found for attribute 'primaryTextColor' in package 'man.utd.headlines.man.utd'
- ERROR No resource identifier found for attribute 'backgroundColor' in package 'man.utd.headlines.man.utd'

所以我认为它必须是我的包名称的问题,但据我所知,一切都很好。

在我的布局文件中,我有以下内容:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/man.utd.headlines.man.utd"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" >

但是包名似乎是正确的:

package man.utd.headlines.man.utd;

有什么想法吗?这非常令人沮丧!

我还检查了我的清单,并尝试使用此软件包名称,但它仍无效:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="man.utd.headlines"

非常感谢任何帮助。

更新:通过更改包名来解决它们更加一致 - 它们在主类和清单中完全相同!

新问题:广告无法展示!

继承我的布局文件:

<?xml version="1.0" encoding="utf-8"?>

<WebView
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

 <com.admob.android.ads.AdView 
    android:id="@+id/ad"
    android:layout_width="fill_parent"
    android:layout_height="100px"
    myapp:backgroundColor="#000000"
    myapp:primaryTextColor="#FFFFFF"
    myapp:secondaryTextColor="#CCCCCC" />

有什么想法吗?任何帮助非常感谢:)。

2 个答案:

答案 0 :(得分:4)

你的attrs.xml(在res / values文件夹中)文件是这样的:

  <?xml version="1.0" encoding="utf-8" ?> 
    <resources>
      <declare-styleable name="com.admob.android.ads.AdView">
        <attr name="backgroundColor" format="color" /> 
        <attr name="primaryTextColor" format="color" /> 
        <attr name="secondaryTextColor" format="color" /> 
        <attr name="keywords" format="string" /> 
        <attr name="refreshInterval" format="integer" /> 
      </declare-styleable>
    </resources>

如果没有,请在res / values文件夹中创建一个xml文件名attrs.xml,并将此代码复制到其中。

答案 1 :(得分:2)

对于新版本的admob,您的attrs.xml文件现在应该如下所示:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="com.google.ads.AdView">
      <attr name="adSize">
          <enum name="BANNER" value="1"/>
          <enum name="IAB_MRECT" value="2"/>
          <enum name="IAB_BANNER" value="3"/>
          <enum name="IAB_LEADERBOARD" value="4"/>
      </attr>
      <attr name="adUnitId" format="string"/>
      <attr name="backgroundColor" format="color" />
      <attr name="primaryTextColor" format="color" />
      <attr name="secondaryTextColor" format="color" />
      <attr name="keywords" format="string" />
      <attr name="refreshInterval" format="integer" />
  </declare-styleable>
</resources>