Android Layout XML中AdMob的正确xmlns网址是什么

Android Layout XML中AdMob的正确xmlns网址是什么,第1张

概述我正在测试AndroidSDK的AdMob.我无法设置admob:testing=“true”因为admob属性未知.<LinearLayoutxmlns:android="http://schemas.android.com/apkes/android"xmlns:admob="http://schemas.android.com/apkes/org.ifies.android"android:layout_width=&q

我正在测试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”会有一个未知的前缀.有人知道如何解决这个问题吗?

子问题:任何人都知道如何更改广告的高度?它似乎固定为48px,在任何DROID手机上看起来都不太好……

解决方法:

可能值得检查错误不是由文件外的东西引起的:

确保您在架构URI中使用的包名称“org.ifIEs.androID”与AndroIDManifest.xml中清单元素上的package属性值相匹配.

确保res / values / attrs.xml具有指定的属性:

<?xml version="1.0" enCoding="utf-8"?><resources>    <declare-styleable name="com.admob.androID.ads.AdVIEw">        <attr name="testing" format="boolean" />        <attr name="backgroundcolor" format="color" />        <attr name="textcolor" format="color" />        <attr name="keywords" format="string" />        <attr name="refreshInterval" format="integer" />        <attr name="isGoneWithoutAd" format="boolean" />    </declare-styleable></resources>
总结

以上是内存溢出为你收集整理的Android Layout XML中AdMob的正确xmlns网址是什么全部内容,希望文章能够帮你解决Android Layout XML中AdMob的正确xmlns网址是什么所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1099751.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存