0

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res/com.tahakki.buttonpuzzlelite"
   android:orientation="vertical"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   >
                        <org.anddev.andengine.opengl.view.RenderSurfaceView android:id="@+id/flip_render"
                                android:layout_width="fill_parent"
                                android:layout_height="fill_parent"
                                android:layout_margin="0px"
                                android:layout_centerInParent="true"                           
                                />
        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignTop="@+id/flip_render"
            android:layout_alignLeft="@+id/flip_render"
        >
<!-- Ad here -->

<com.admob.android.ads.AdView
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content"
           app:backgroundColor="#000000"
           app:primaryTextColor="#FFFFFF"
           app:secondaryTextColor="#CCCCCC"
    />
        </RelativeLayout>
</RelativeLayout>

Eclipse 告诉我 app:backgroundColor、app:primaryTextColor 和 app:secondaryTextColor 找不到。我的构建路径中有适当的 admob JAR。怎么了?

4

1 回答 1

0

原来我已经导入了库,但没有导入 attrs.xml 文件。

于 2010-12-21T21:59:15.110 回答