未找到Android MapView类

时间:2013-08-26 17:51:03

标签: java android android-fragments android-activity android-mapview

尝试在模拟器或设备上运行mapview时,活动崩溃。我觉得这可能是由于所需库的导入问题。该错误将显示未找到类的异常。如果您需要更多信息,请与我们联系。我也一直在关注本教程:https://blog-emildesign.rhcloud.com/?p=435

的活动:

package com.klinetel.countydentistfinder;

import com.google.android.gms.maps.*;

import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;


public class ClinicMapActivity extends FragmentActivity
{
    MapView m;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_clinic_map);


    }





}

活动布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <fragment
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

清单:

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <uses-permission android:name="com.klinetel.countydentistfinder.permission.MAPS_RECEIVE"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <permission
        android:name="com.klinetel.countydentistfinder.LocationGoogleMapV2Demo.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name="com.klinetel.countydentistfinder.MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.klinetel.countydentistfinder.ClinicListingActivity"
            android:label="@string/title_activity_clinic_listing"
            android:parentActivityName="com.klinetel.countydentistfinder.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.klinetel.countydentistfinder.MainActivity" />
        </activity>
        <activity
            android:name="com.klinetel.countydentistfinder.ClinicMapActivity"
            android:label="@string/title_activity_clinic_map"
            android:parentActivityName="com.klinetel.countydentistfinder.ClinicListingActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.klinetel.countydentistfinder.MainActivity" />
        </activity>
        <uses-library android:name="com.google.android.maps"></uses-library>
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value=""/>
    </application>

</manifest>

logcat的:

enter image description here

1 个答案:

答案 0 :(得分:2)

您不应将其添加为外部jar文件。

您应该在Android地图项目中引用库项目。

http://developer.android.com/google/play-services/setup.html

将google-play services_lib库项目复制到您的工作区(您的android地图项目所在的文件夹)。可以在以下路径中找到库项目。

     <android-sdk-folder>/extras/google/google_play_services/libproject/google-play-services_lib library project .

将库项目导入您的eclipse

点击文件&gt;导入,选择Android&gt;将现有的Android代码导入Workspace,并浏览工作区导入库项目。您可以检查它是否是库项目。右键单击库项目。转到属性。点击左侧面板上的Android。您将看到Is Library已选中。

右键单击你的android项目。转到属性。在左侧面板中选择Android。单击“添加”并浏览库项目。选择相同。单击“确定”并应用

enter image description here

另外请确保您已在google api控制台中为Android启用了Google地图