2

簡単な地図を表示しようとしています。

これは私が持っているものです:

package com.chance.squat;

import com.chance.squat.R;
import com.google.android.maps.MapActivity;
import android.os.Bundle;

public class Maps extends MapActivity 
{    
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.maps);
    }

    @Override
    protected boolean isRouteDisplayed() {
        return false;
    }
}

<?xml version="1.0" encoding="utf-8"?>
<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="A2:D9:A5:1C:21:6F:D7:44:47:23:31:EC:1A:98:EF:36"
/>

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.chance.squat"
      android:versionCode="1"
      android:versionName="1.0">

    <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/CustomTheme">
          <uses-library android:name="com.google.android.maps"/>

        <activity android:name=".MyApp"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name="com.chance.squat.Search"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

            </intent-filter>
        </activity>

        <activity android:name="com.chance.squat.Add"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

            </intent-filter>
        </activity>
       <activity android:name="com.chance.squat.About"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

            </intent-filter>
        </activity>



    </application>

    <uses-permission android:name="android.permission.INTERNET"/>

</manifest> 

また、バージョン 8 の Google API をダウンロードし、それらに対してビルドするように設定しました。私の問題は、 import com.google.android.maps.MapActivity が見つからないようで、その理由や次のステップがわからないことです。

4

1 に答える 1

1

マップはマニフェストにある必要があります

    <activity android:name="com.chance.squat.Maps"
              android:label="@string/app_name">
        ...
    </activity>
于 2012-12-10T17:02:03.573 に答える