android 中的 AdMob“AdView 缺少必需的 XML 属性“adSize”; ”
我正在尝试在我的应用程序中实施 AdMob。但不知道它以某种方式显示此错误,并且我的 R.java 文件因此没有生成。我已经尝试了所有方法来解决这个问题,例如 Clean、Build、Build All。但非对我有用。 在我的代码片段中显示错误“解析 XML 时出错:未绑定前缀”,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical"
android:background="@color/bgcolor">
<LinearLayout
android:id="@+id/Linearlayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="XXX"
ads:refreshInterval="60"/>
</LinearLayout>
请帮助我。我被困在这里:(
I am trying to implement AdMob in my Application. But dont know somehow its showing this error and my R.java file is not being generated due to it. I have tried all the ways to solve this problem, like Clean,Build, Build All. But non is working for me.
Following my code snippet in which its showing error "Error in parsing XML: Unbound prefix"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical"
android:background="@color/bgcolor">
<LinearLayout
android:id="@+id/Linearlayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="XXX"
ads:refreshInterval="60"/>
</LinearLayout>
Please help me out. I am stuck here :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可能是命名空间问题。您必须定义名称空间。
尝试添加
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
Probably a namespace issue. You have to define the namespace.
try adding
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
新的 Admob SDK(Google Play 服务)需要另一个命名空间
New Admob SDK (Google Play services) requiried another namespace
并将此行放入manifest.xml文件中,
上面的代码对我来说工作得很好...请访问此网站以获取完整参考android-admob 帮助
谢谢 Pragna
and put this lines in manifest.xml file
the above code is working perfectly for me... visit this site for complete reference help forandroid-admob
Thanks Pragna