当前位置: 首页 > 知识库问答 >
问题:

分析时出错:未绑定前缀异常

吕骞尧
2023-03-14

此代码显示未绑定异常,我尝试了所有组合...不能重新解决!!

    <com.google.android.maps:MapView
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"       
     android.apikey="AIzaSyDIqLvjKi_VM7nT1DUSTzIeKDTuzPGFqrQ"/>

整个代码是:

    <?xml version="1.0" encoding="utf-8"?>
     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent" >  
     <com.google.android.maps:MapView
      android:id="@+id/map1"    
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"    
      android:apikey="AIzaSyDIqLvjKi_VM7nT1DUSTzIeKDTuzPGFqrQ"/>
     </RelativeLayout>

共有3个答案

宋唯
2023-03-14

用Android替换android.apikey:apikey

但愿它能帮上忙。。

卫高明
2023-03-14

您定义了错误的地图视图

<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
/> 

并将API密钥添加到清单中的应用程序标记中,如下所示:

<meta-data
  android:name="com.google.android.maps.v2.API_KEY"
   android:value="your api key"/>

何甫
2023-03-14

你需要这个

 xmlns:android="http://schemas.android.com/apk/res/android"

在xml的根元素中

    <?xml version="1.0" encoding="utf-8"?>
     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent" >  
     <com.google.android.maps.MapView // :MapView is .MapView
      android:id="@+id/map1"    
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"/>    
     </RelativeLayout>

而且

<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="api key"/>
// android.apikey

必须位于清单文件的应用程序标记中

你可以找到一个例子

Android-Android。看法膨胀异常:二进制XML文件行#8:inflating类片段时出错

参考文献

https://developers.google.com/maps/documentation/android/start#getting_the_google_maps_android_api_v2

 类似资料:
  • 问题内容: 我的项目无法识别xml中的com.facebook.widget.ProfilePictureView(或其他窗口小部件)。我导入了facebook sdk,甚至使用它来登录并与开放图进行交互。一切正常,我只是想添加个人资料图片,因此最终在sdk中使用了此小部件。 我尝试将facebooksdk.jar复制到我的libs文件夹并将其添加到构建路径,但是仍然存在未绑定的前缀错误。 我的项

  • 问题内容: 我重新启动了Eclipse,并且错误在同一行上更改为“错误:解析XML:未绑定前缀” 我正在尝试在我的android phonegap应用程序中使用此插件。这是一个本地通知插件。我在这行的config.xml文件中收到错误: 有一个关于这个问题的一个类似的问题在这里,但答案是不相关的我的问题。 这是我的config.xml文件: 我正在使用带有adt插件的eclipse。我生成了一个a

  • 问题内容: 我已经按照本教程验证XML文件。但是我在验证XML文件时收到异常。我做错了什么?我的代码: XML模式: 验证XML文件: 用于验证的Java源代码: 我收到的例外情况: 问题答案: XML模式文件本身必须是有效的XML文档。您缺少外部模式元素和前缀的名称空间声明。

  • 问题内容: 我在“ tx:annotation-driven”行上收到上述错误,但是我在Bean文件的顶部声明了名称空间,为什么以下XML导致此错误? 问题答案: 就像其他xmlns:定义一样,您需要一个xmlns:tx

  • 我的adview XML文件的代码 错误:未绑定前缀。 xmlns:android=”http://schemas.android.com/apk/res/android"

  • 本文向大家介绍Python中绑定与未绑定的类方法用法分析,包括了Python中绑定与未绑定的类方法用法分析的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Python中绑定与未绑定的类方法。分享给大家供大家参考,具体如下: 像函数一样,Python中的类方法也是一种对象。由于既可以通过实例也可以通过类来访问方法,所以在Python里有两种风格: 未绑定的类方法:没有self 通过类来引用方