main.XML对Google地图有误

时间:2012-07-26 11:03:35

标签: android xml eclipse google-maps

这是我的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <com.google.android.maps.MapView
          android:id="@+id/mvMain"
                 android:layout_width="fill_parent"
                 android:layout_height="fill_parent"
                 android:clickable="true"
                 android:apiKey="MAP API KEY" />
</RelativeLayout>

并且在Ant编辑器中显示问题在于:android:layout_height =“fill_parent”&gt; 但事实并非如此。 这就是Manifest:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.natasamisic.maptest"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
         android:theme="@android:style/Theme.NoTitleBar">
        <uses-library android:name="com.google.android.maps" />
        <activity
            android:name=".Main"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我试图清理一个项目但仍无法正常工作。当我尝试运行它时,它会在控制台中显示:XML文件中的错误:中止构建。

并显示新的空白XML文件 main.out.xml ...

我该怎么办? 我的Main.java还可以。问题是XML中的东西,也许是一些Eclipse bug,我不知道如何解决它。请帮忙......

1 个答案:

答案 0 :(得分:0)

删除 main.out.xml 并清理项目表单Menu -> Project -> Clean

然后RightClick on Project -> Run as -> Android Application