为标记片段发现为什么发现意外的名称空间前缀“xmlns” 为标记片段找到了意外的名称空间前缀“map”?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Main">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
map:mapType="satellite"/>
</RelativeLayout>
为标记片段找到了意外的名称空间前缀“xmlns” 为标记片段找到了意外的名称空间前缀“map”?
答案 0 :(得分:18)
从xmlns:android="http://schemas.android.com/apk/res/android"
元素中移除<fragment>
,并考虑将xmlns:map="http://schemas.android.com/apk/res-auto"
从<fragment>
元素移至根元素。
例如,这是有效的:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/foo"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"
map:mapType="satellite"/>
</RelativeLayout>
答案 1 :(得分:2)
显然,这只是一个错误的Lint检查错误。当您在Eclipse的问题视图中右键单击带有错误的行时,可以删除它,选择快速修复选项并选择例如忽略检查项目。
错误消失,项目构建,应用程序运行良好。
答案 2 :(得分:0)
试试这个
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"