0

几天来,我一直在用这个头撞墙。我已经阅读了几乎所有关于该主题的帖子,但似乎没有什么能让我越过终点线。

尝试使用 Google Play Services Map v2 API 构建应用程序。

我有 API 密钥,没问题。

这是我的一点:MainActivity.java

public class MainActivity extends FragmentActivity
{

    GoogleMap googleMap;

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

        int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());
        if ( status==ConnectionResult.SUCCESS)
        {
            SupportMapFragment supportMapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
            googleMap = supportMapFragment.getMap();
        }
        else
        {
            int requestCode = 10;
            Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, requestCode);
            dialog.show();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

活动主.xml:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" 
      android:id="@+id/map"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:name="com.google.android.gms.maps.MapFragment"/>

相关清单:

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="17" />

<permission
    android:name="com.mcdaniel.mmm4.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.mcdaniel.mmm4.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.persmission.INTERNET" />
<uses-permission android:name="android.persmission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.persmission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

<meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="MY API KEY" />

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true" />

我已经解决了涉及 R$styleable 和 Maps 类的 ClassNotFound 的 NoClassDefFound 错误,但我无法解决这个问题。

关于课程,我尝试了几种不同的实现,但没有运气。这似乎是最明确的。没有编译警告。

我的目标是 android-17,最低为 android-11。我已经导入了库(带有复制文件选项),并被我的项目引用,并且也导出了。

显然,我缺少一些东西。请帮忙!

谢谢,大卫

4

3 回答 3

1

这可能会帮助你xml改变喜欢 SupportMapFragment

<fragment
            android:id="@+id/chk_aerrow_map"
            android:name="com.google.android.gms.maps.SupportMapFragment"
            android:layout_width="fill_parent"
            android:layout_margin="5dp"
            android:layout_height="100dp" />

详情请看这里

于 2013-05-03T04:27:16.557 回答
0
         My target is android-17 with min of android-11

你的最小 SDK 是 11。

注意:如果您希望在 api 11 及更低版本上运行应用程序,您还需要添加支持库。

http://developer.android.com/tools/extras/support-library.html

用这个

  android:name="com.google.android.gms.maps.SupportMapFragment"

由于您没有添加支持库,因此您得到了 classcastexception

还要确保您已按照以下链接中的所有步骤进行操作

https://developers.google.com/maps/documentation/android/start

编辑

https://developers.google.com/maps/documentation/android/reference/com/google/android/gms/maps/MapFragment

api 12 的 MapFragment 和更高版本的 api 11 和更低版本的支持片段

在此处输入图像描述

于 2013-05-03T05:08:28.987 回答
0

您不能将MapFragment(从您的 XML)转换为SupportMapFragment.

一种可能的解决方案是将MapFragment您的 XML 中的更改SupportMapFragment为 ankitmakwana 在他的回答中建议的那样。

在我看来,更好的方法是将支持的最低 API 设置为 API12 而不是 API11,并使用 aMapFragment而不是SupportMapFragment. 然后您不必担心兼容性库。

将最小支持的 API 设置为 API12 而不是 API11 不应呈现(几乎)任何与您的应用程序不兼容的设备,因为根据SO 中最大的 Android 专家之一发布的这个答案,基本上没有运行 API11 的设备。

如果您选择采用这种方式,只需保持 XML 原样,然后在代码中更改以下行:

SupportMapFragment supportMapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
googleMap = supportMapFragment.getMap();

对此:

MapFragment mapFragment = (MapFragment) getFragmentManager().findFragmentById(R.id.map);
googleMap = mapFragment.getMap();

届时它将起作用。

于 2013-05-03T07:58:27.883 回答