我正在测试适用于 Android SDK 的 AdMob。我无法设置,admob:testing="true"
因为 admob 属性未知。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:admob="http://schemas.android.com/apk/res/org.ifies.android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FF000000"
android:clickable="true"
>
<com.admob.android.ads.AdView
android:id="@+id/admob"
android:visibility="visible"
android:layout_width="fill_parent"
android:layout_height="100px"
android:background="#FF0000"
admob:testing="true"
/>
</LinearLayout>
我的 Eclipse 抱怨admob:testing="true"
会有一个未知的前缀。有人知道如何解决这个问题吗?
子问题:有人知道如何更改广告的高度吗?它似乎固定为 48 像素,这在任何 DROID 手机上看起来都不是很好......