0

我试图将内部活动集成到我的应用程序中。我下载了示例项目,但在 xml 文件中出现错误...

 Multiple annotations found at this line:
    - error: No resource identifier found for attribute 'adType' in package        'com.inneractive.api.ads.sample'
    - error: No resource identifier found for attribute 'refreshInterval' in package 
     'com.inneractive.api.ads.sample'
    - error: No resource identifier found for attribute 'keywords' in package 
     'com.inneractive.api.ads.sample'
    - error: No resource identifier found for attribute 'appID' in package         'com.inneractive.api.ads.sample'

XML

   <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

    <com.inneractive.api.ads.InneractiveAd
        android:id="@+id/ad"
        xmlns:inneractive="http://schemas.android.com/apk/res/com.inneractive.api.ads.sample"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        inneractive:appID="Android_IA_Test"
        inneractive:adType="Banner"
        inneractive:keywords="android,test"
        inneractive:refreshInterval="120"
        android:layout_alignParentBottom="true"
    />

顺便说一句,对于原生 android 应用程序来说,inner-active 是一个正确的选择吗?TIA

4

3 回答 3

0

我已经使用 inneractive 大约 6 个月了,并且每个月都能产生可观的收入(每月大约 1500 美元)。这完全取决于您拥有的下载量以及放置横幅的方式。不要让它对用户造成太大的干扰,但要确保他们确实看到它并能够点击它。

于 2012-06-20T13:44:45.390 回答
0

问题是由于线

xmlns:inneractive="http://schemas.android.com/apk/res/com.inneractive.api"

可以试试

<?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

    <view class="com.inneractive.api.ads.InneractiveAd"
        android:id="@+id/ad"

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        inneractive:appID="Android_IA_Test"
        inneractive:adType="Banner"
        inneractive:keywords="android,test"
        inneractive:refreshInterval="120"
        android:layout_alignParentBottom="true"
    />
    </RelativeLayout>
于 2012-06-12T07:44:05.557 回答
0

我叫 Nirit,是 Inneractive 的支持经理。

您是否正在尝试编译我们的示例应用程序?还是你自己的项目?

请确保将“xmlns:inneractive”设置为您的应用程序包。此外,请注意attrs.xml文件 (InneractiveAdSample\res\values\attrs.xml) 应添加到您的项目中。

如果您有任何问题或意见,请随时通过仪表板上的“联系支持”链接与我联系。最好的问候,尼里特。

于 2012-06-17T13:55:16.020 回答