我一直在查看之前的主题有关该错误,他们说我应该首先列出android:xmlns attirbute,这就是我所做的但是我仍然面临着这个错误,不明白为什么。 (如果我从工作中复制另一个布局并不重要)。 无论如何,这是XML:
<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" >
<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="fill_parent"
android:clickable="true"
android:apiKey="*CENSORED*"/>
</RelativeLayout>
这可能是什么问题?
答案 0 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<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"
android:clickable="true"
android:layout_above="@+id/ll"
android:apiKey="*******" />
</RelativeLayout>
这是我的xml,它适用于我。我想你错过了第一线。
答案 1 :(得分:0)
解决方案是:必须重置我的adb ..