0

エラーがあります: activity_main.xml ファイルで XML の解析中にエラーが発生しました: 整形式ではありません (無効なトークン)。引用符とは関係がないことを確認するために、再入力しようとしました。私は本からコード全体をほとんどコピーしています。コードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    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
    android:id="@+id/mapView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:enabled="true"
    android:clickable="true"
    android:apiKey="0ak81Gwf6w8ZZhWxdNiCS8e6LvqrrwZ8nUZKmbQ" />
</LinearLayout>
4

1 に答える 1

0

これに変更します:

<LinearLayout 
    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
    android:id="@+id/mapView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:enabled="true"
    android:clickable="true"
    android:apiKey="0ak81Gwf6w8ZZhWxdNiCS8e6LvqrrwZ8nUZKmbQ" />
</LinearLayout>

LinearLayoutの開始タグを閉じていません。

于 2012-12-06T22:29:52.193 に答える