0

我已经在我的应用程序中实现了android Google maps V2,并且它在我测试的大多数设备(Galaxy Ace Plus、Galaxy 7inch Tab、Sony Xperia Z)上都能正常工作。但它不适用于HTC Desire。我已经交叉验证了也安装在该设备中的Google Play 服务。我花了很多时间寻找解决方案。下面是我的实现。

public class MainActivity extends FragmentActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
        SupportMapFragment fragment = new SupportMapFragment();
        getSupportFragmentManager().beginTransaction()
                .add(android.R.id.content, fragment).commit();        
}
}

下面是activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/the_map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:cameraTilt="45"
map:cameraZoom="2" />

这是清单文件。

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

<permission
    android:name="com.raj.googlemapsv2test.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.raj.googlemapsv2test.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<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" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="AIzaSyDD6bvUVkTk2UzOLpojdeBtlh5xBYDhy6E" />

    <activity
        android:name="com.raj.googlemapsv2test.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

当我检查日志时,它显示以下错误行。

 Could not find class 'maps.i.k', referenced from method maps.z.ag.a
 Failed to load map.  Could not contact Google servers.
 Failed to load map.  Could not contact Google servers.

最后带着一点疑问,我更新了设备中的护目镜地图应用程序,之后它就可以工作了。因此,当任何设备发现此类问题时,我想向用户显示更新警报。但无法知道如何检查。那么任何人都可以提出一些方法来确定设备中的护目镜地图应用程序安卓护目镜播放服务是否支持这个安卓护目镜地图 V2的版本。

任何解决方案将不胜感激。

4

2 回答 2

6

您可以将此代码添加到您的 onResume 方法中。它会检查用户是否拥有 Google Play 服务的更新版本,如果没有,则会显示一个将他重定向到 Google Play 的弹出窗口。

@Override
protected void onResume() {
    super.onResume();
    int errorCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
    if(errorCode != ConnectionResult.SUCCESS && GooglePlayServicesUtil.isUserRecoverableError(errorCode)){
        Dialog d = GooglePlayServicesUtil.getErrorDialog(errorCode, this, 0, new OnCancelListener() {
            @Override
            public void onCancel(DialogInterface dialog) {
                //As my application does a heavy use of maps, if the user cancels the dialog, I just finish the FragmentActivity
                MainFragmentActivity.this.finish();
            }
        });
        d.show();
    }
}

希望有帮助,加油!

于 2013-05-06T09:38:30.953 回答
0
@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    FragmentManager fm = getChildFragmentManager();

    supportMapFragment = (SupportMapFragment) fm.findFragmentById(R.id.map);
    if (supportMapFragment == null) {
        supportMapFragment = SupportMapFragment.newInstance();
        fm.beginTransaction().replace(R.id.map, supportMapFragment).commit();
    }
}

此时谷歌播放服务尚未初始化,因此获取地图并在 onResume() 或 onStart() 中添加您想要的内容

   @Override
public void onResume() {
    super.onResume();
    if (gMap == null) {
        supportMapFragment.getMapAsync(this);
    }
}

添加后你需要实现 OnMapReadyCallback。并做你喜欢用地图做的任何操作。

于 2016-05-27T08:51:20.910 回答