1

私はそのエラーについて以前の件名を調べてきましたが、最初に android:xmlns 属性をリストする必要があると言われました。それは私が行ったことですが、まだそのエラーに直面しています。(作業中のレイアウトから別のレイアウトをコピーしても問題ありません)。とにかく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>

ここで何が問題になる可能性がありますか?

4

2 に答える 2

0

解決策は次のとおりです。adbをリセットする必要がありました..

于 2012-09-11T08:03:56.243 に答える
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であり、私と一緒に動作します。最初の行が欠落していると思います。

于 2012-09-07T21:47:49.200 に答える