谷歌地图没有在wifi上的特定设备上加载,而是在3g网络中工作

时间:2015-07-06 20:52:08

标签: android google-maps android-fragments google-maps-android-api-2 handshake

我使用谷歌地图v2与片段,谷歌地图加载正常,但在一些设备,如MiUi和华为它没有加载地图在wifi连接和显示未知的Handhshake错误,以下是代码片段。

private void initilizeMap() {
    if (googleMap == null) {
        googleMap = ((MapFragment) getActivity().getFragmentManager().findFragmentById(R.id.map)).getMap();
        buildGoogleApiClient();
        setupLocationClient();
        // check if map is created successfully or not
        if (googleMap == null) {
            Toast.makeText(getActivity(), "Sorry! unable to create maps", Toast.LENGTH_SHORT).show();
        }
    }
}

0 个答案:

没有答案