我想包括AdMob可以在Eclipse的Android應用程序。但是我在layout.xml中遇到錯誤。 Eclipse告訴我,com.admot.android.ads.AdView是一個未綁定的前綴。遵循pdf說明,我在構建路徑中包含admob庫。但它似乎仍然沒有找到AdView類。但爲什麼?com.admob.android.ads.AdView未綁定前綴?
這裏是產生錯誤的佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/renegrothmann.kalah"
android:layout_width="wrap_content" android:layout_height="wrap_content"
>
<renegrothmann.kalah.GameView
android:id="@+id/gameView" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="2px"
/>
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
/>
</LinearLayout>
您是否輸入了`com.admot.android.ads.AdView`錯誤?因爲它應該是admob而不是admot – Nanne 2011-02-11 10:49:07
@Nanne:是的,我輸入了那個,所以這個類型是我的。除了添加庫之外,我不知道如何在該AdView視圖中進行綁定。如果有幫助:我按照文檔中的描述導入了庫並添加了內部庫。 – Rene 2011-02-11 14:07:59