当前位置: 首页 > 知识库问答 >
问题:

谷歌地图Android API v2抛出GooglePlayServicesNot可用性异常,过时,支持MapFragment.get地图()返回空

上官扬
2023-03-14

我试图将新的谷歌地图Android API v2纳入使用Android支持库的应用程序。我经历了许多次迭代,试图找到一个工作的地方,现在我已经放弃了,我想我应该在这里问。

我去了API控制台,创建了一个项目,启用了谷歌地图API v2Android版,根据需要创建了一个调试密钥,并将其粘贴在清单上。没有身份验证问题或类似的问题。我很确定我做得对。

在我的项目的libs文件夹中,我把android-support-v4.jar(通过项目右键单击-

在我的清单中,我有:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" ...>
    <permission
      android:name="myapp.permission.MAPS_RECEIVE"
      android:protectionLevel="signature"/>

    <All the uses-permission required like INTERNET, ACCESS_NETWORK_STATE, WRITE_EXTERNAL_STORAGE, FINE AND COARSE LOCATION, etc>
    <uses-permission android:name="myapp.permission.MAPS_RECEIVE"/>
    <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
    <application ...>
        ...
        <uses-library android:name="com.google.android.maps" />
        <meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AI..."/>
    </application>

在我的mainview.xml我有:

<fragment
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/map"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   class="com.google.android.gms.maps.SupportMapFragment" />

现在是MainView。我有:

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;

public class MainView extends FragmentActivity ... {
    private GoogleMap mMap;

    @Override
    protected void onResume() {
        ...
        Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.map);
        SupportMapFragment mapFragment = (SupportMapFragment)fragment;
        mMap = mapFragment.getMap();
        //PROBLEM: mMap is null here even though mapFragment is not
    }
}

然后我想我可能需要初始化片段,所以在设置内容视图后,我在我的onCreate中添加了:

//Fragments
FragmentManager manager = getSupportFragmentManager(); 
FragmentTransaction transaction = manager.beginTransaction();
transaction.add(R.id.map, SupportMapFragment.newInstance());
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.commit();

然后我说,也许这不是Support portMapFrament,但我实际上应该引用实际的片段,在我的onResume中,我这样做了:

Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.map);
SupportMapFragment mapFragment = (SupportMapFragment)fragment;

//Fragments
FragmentManager manager = getSupportFragmentManager(); 
FragmentTransaction transaction = manager.beginTransaction();
transaction.add(R.id.map, mapFragment);
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.commit();

mMap = mapFragment.getMap();

mMap在此之后再次为空。

然后我看到有一个MapsInitializer类,所以我想我应该先调用它。

所以我在得到上面代码中的片段之前添加了代码

try {
    MapsInitializer.initialize(this);
} catch (GooglePlayServicesNotAvailableException e) {
    e.printStackTrace();
}

使用此Logcat报告警告(第313行是映射初始化器。初始化(this)):

com.google.android.gms.common.GooglePlayServicesNotAvailableException
    at com.google.android.gms.internal.n.c(Unknown Source)
    at com.google.android.gms.internal.n.a(Unknown Source)
    at com.google.android.gms.maps.MapsInitializer.initialize(Unknown Source)
    at myapp.activities.MainView.inflateSelectedViewAndSetData(MainView.java:313)
    at myapp.activities.MainView.onClick(MainView.java:642)
    at android.view.View.performClick(View.java:3153)
    at android.view.View$PerformClick.run(View.java:12148)
    at android.os.Handler.handleCallback(Handler.java:587)
    at android.os.Handler.dispatchMessage(Handler.java:92)
    at android.os.Looper.loop(Looper.java:152)
    at android.app.ActivityThread.main(ActivityThread.java:4615)
    at html" target="_blank">java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:491)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
    at dalvik.system.NativeStart.main(Native Method)

在我的尝试中,Logcat会报告以下警告:

Google Play services out of date.  Requires 2010100 but found 1013

这可能是罪魁祸首,但我没有找到解决办法。

在这一点上,我没有主意了。我在这里,这里,这里读了几个帖子,但是没有一个建议解决了这个问题。对于后者,他们建议不包括项目依赖项,只包括jar文件。嗯,使用googleplay服务也不行。jar来自google-play-services_lib/libs文件夹,或者从该项目导出我自己的jar。

顺便说一下,我在一个实际的设备上运行(2.3.5和平板电脑3.2),而不是模拟器。

任何帮助衷心感谢。:)

更新:

下面是量子位元的解。

至于导出库依赖项,一个不必处理它的好方法(这在处理存储库时是一件痛苦的事情)是使用FatJar并导出google\u play\u services\u lib项目(我没有从该项目创建本地副本,因为当它更新时我不想重新导入),并将输出fat jar文件作为另一个jar文件包含在项目中。注意:在选择胖jar中包含哪些jar文件时,我必须排除注释。jar文件,因为它已预先包含,并导致复制错误。现在我要做的就是加入google\u play\u services\u rev\u 3。jar在我的项目的libs文件夹中,我可以开始了。

共有3个答案

何涵畅
2023-03-14

从Play商店下载并安装最新的Google Play services。由于某种原因,我无法通过搜索找到它。通过从SDK中运行文件夹/extras/google/google\u play\u services/samples/maps中的示例应用程序,我被提示安装升级,并被带到play商店进行安装。

习旻
2023-03-14

我在我的项目中也遇到了同样的问题。解决方案非常简单,只需处理((SupportMapFragment)getSupportFragmentManager()的可能性。findFragmentById(R.id.map))。getMap()可以返回null。如果您要处理null,内置的SupportMapFragment将处理Google Play过时的服务 错误,并将显示用于更新Google Play服务的地图本地化消息和按钮,就像@qubz在示例项目中介绍的那样。

示例代码:

@Override
protected void onResume() {
    super.onResume();
    setUpMapIfNeeded();
}

/**
 * Sets up the map if it is possible to do so (i.e., the Google Play services APK is correctly
 * installed) and the map has not already been instantiated.. This will ensure that we only ever
 * call {@link #setUpMap()} once when {@link #mMap} is not null.
 * <p>
 * If it isn't installed {@link SupportMapFragment} (and
 * {@link com.google.android.gms.maps.MapView MapView}) will show a prompt for the user to
 * install/update the Google Play services APK on their device.
 * <p>
 * A user can return to this FragmentActivity after following the prompt and correctly
 * installing/updating/enabling the Google Play services. Since the FragmentActivity may not have been
 * completely destroyed during this process (it is likely that it would only be stopped or
 * paused), {@link #onCreate(Bundle)} may not be called again so we should call this method in
 * {@link #onResume()} to guarantee that it will be called.
 */
private void setUpMapIfNeeded() {
    // Do a null check to confirm that we have not already instantiated the map.
    if (mMap == null) {
        // Try to obtain the map from the SupportMapFragment.
        mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                .getMap();
        // Check if we were successful in obtaining the map.
        if (mMap != null) {
            setUpMap();
        }
    }
}

/**
 * This is where we can add markers or lines, add listeners or move the camera. In this case, we
 * just add a marker near Africa.
 * <p>
 * This should only be called once and when we are sure that {@link #mMap} is not null.
 */
private void setUpMap() {
    mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker"));
}

结果:

留档悲伤

只有在加载基础地图系统且片段中存在基础视图时,才能使用getMap()获取GoogleMap。此类自动初始化地图系统和视图;然而,你不能保证它何时准备好,因为这取决于谷歌播放服务APK的可用性。如果GoogleMap不可用,getMap()将返回null。SupportMapFragment

璩浩广
2023-03-14

如链接底部所述;http://developer.android.com/google/play-services/setup.html

下面是正确处理此问题的示例代码;

int checkGooglePlayServices =    GooglePlayServicesUtil.isGooglePlayServicesAvailable(mContext);
    if (checkGooglePlayServices != ConnectionResult.SUCCESS) {
    // google play services is missing!!!!
    /* Returns status code indicating whether there was an error. 
    Can be one of following in ConnectionResult: SUCCESS, SERVICE_MISSING, SERVICE_VERSION_UPDATE_REQUIRED, SERVICE_DISABLED, SERVICE_INVALID.
    */
       GooglePlayServicesUtil.getErrorDialog(checkGooglePlayServices, mActivity, 1122).show();
    }
 类似资料:
  • 问题内容: 当我尝试在片段上显示地图时,它返回空指针异常。我已将所有权限添加到清单中。我将片段文件附加为其XML文件和log cat Chatffragment.java 其XML LOGCAT 第55和70行是googleMap = mapFrag.getMap(); initilizeMap(); 问题答案: 您必须等到地图加载完毕…。 编辑 检查编辑代码,使用ChildFragmentMan

  • 我有MainActivity上有一个片段,当用户点击片段时,用户会导航到另一个片段,在最后一个片段上有一个按钮来启动谷歌地图导航,这是代码: 问题是,在地图启动后,我希望用户在按下back时返回到我的应用程序,而不是Launcher。 有没有办法做到这一点。 这是我的完整代码: 主体活动 原木

  • 所以我看到了一个特殊的例外,我敢肯定的是谷歌地图的绘图代码。 我有一个片段,在那里我以编程方式添加了一个支持地图片段,然后我在其中操纵谷歌地图实例。 这是stacktrace: 我无法可靠地复制它(尽管这种情况经常发生),我已经查看了ReadWriteDirectByteBuffer和ShortToByteBufferAdapter,但没有任何东西突然出现在我面前。 有什么想法吗?

  • 我认为问题是我需要添加构建提示。我可以找到在哪里添加他们,但我不确定他们应该是什么格式。我也不知道要补充什么。我想我发现了一个帖子,说我需要添加Android.xapplication=Android:value=“Your Key”/>Android.xPermissions= 但我不确定构建提示条目表单中的格式是什么

  •        LSV默认的对谷歌影像进行了加载,如果需要加载其他的谷歌地图数据,可以通过LSV中直接点击即可加载。

  • 是否可以使用Google API为网站创建一个与此完全相同的地图: https://www.google.pl/maps/place/Googleplex/@37.422,-122.0840835,19z/data=!4m2!3m1!1s0x808fba02425dad8f: 0x6c296c66619367e0 所以我想要的是将地点ID传递给API,以获得一个像Googleplex这样的地方,我