こんにちは、オンラインで mapOverLay チュートリアルを行っていますが、xml でエラーが発生しています。LinearLayout タグで、「タグ LinearLayout に予期しない名前空間プレフィックス xmlns が見つかりました」というエラーが表示されます。削除しようとしましたが、うまくいきませんでした。問題の可能性があるアイデアはありますか??
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<view android:id="@+id/mv"
class="com.google.android.maps.MapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:clickable="true"
android:apiKey="07WVUg-srWUY6iEC2qTEiuT1mKYkoo6EVPK74pA"
/>
<!-- Must replace apiKey above with appropriate one for your development machine -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="0px"
>
<Button android:id="@+id/doOverlay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30px"
android:layout_weight="1.0"
android:textSize="12sp"
android:text="@string/overlay_label" />
<Button android:id="@+id/doAccess"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:textSize="12sp"
android:text="@string/access_label" />
<Button android:id="@+id/doRoute"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="30px"
android:layout_weight="1.0"
android:textSize="12sp"
android:text="@string/route_label" />
</LinearLayout>
</FrameLayout>