android 开发 google map 的android.view.InflateException:Binary XML file line # 10:Error inflating class

 这几天在做google map的小例子,遇到一个奇怪的错误。android.view.InflateException:Binary XML file line # 10:Error inflating class........

这个错误的意思是xml 语法错误,但是我检查了很久,都发现没有错误。哥纠结了几个小时,最后在某个论坛上看到有人说可能是我的

主要Activity 继承了 Acitivity ,应该继承的是MapActivity。MapActivity这个类是用于显示Google Map的Acitivity。没有继承MapActivity这个类,

所以我在main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TextView
    android:id="@+id/textview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"></TextView>
<com.google.android.maps.MapView
   android:id="@+id/MapsView01"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:apiKey="0V-bkJx5msrhlUH-OfgV1iz86PxZ4LNw5qC74iA"/>
</RelativeLayout>

中的com.google.android.maps.MapView就会有语法错误了。

哎!搞了那么久,原来是这个错误!

你可能感兴趣的:(android,xml,File,Google,layout,encoding)