3

我现在一直在努力让 android V2 的谷歌地图工作。我正在设备上尝试这个:Samsung Galaxy S [2.3.3] 和模拟器。

我的清单:(我尝试过同时使用 Debug 键和 Release 键)

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

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="18" />

    <permission 
        android:name="com.example.klottr.permission.MAPS_RECEIVE" 
        android:protectionLevel="signature"></permission>
    <uses-permission 
        android:name="com.example.klottr.permission.MAPS_RECEIVE"/>
    <uses-permission 
        android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <uses-permission 
        android:name="android.permission.INTERNET"/>
    <uses-permission 
        android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <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"/>

    <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="AIzaSyDqmCXjO-h-Yy_qGsyVrUz_icB9mCTUzLM"/>
        <activity
            android:name="com.example.klottr.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>

主要活动 xml:

        <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:tools="http://schemas.android.com/tools"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
          tools:context=".MainActivity" >

         <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />
    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"/>

</RelativeLayout>

mainactivity java 文件:

package com.example.klottr;

import com.example.klottr.R;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

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

public class MainActivity extends FragmentActivity {
    GoogleMap googleMap;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  setContentView(R.layout.activity_main);
 }

}

我试过按照谷歌网站上的指南,以及来自 stackoverflow 的一些指南和技巧。我非常感谢一些提示。我现在只是想让我的设备正确显示地图,但我得到“除非您更新 Google Play 服务,否则此应用将无法运行”,即使我的设备上安装了最新版本的 Google Play 服务设备。

4

4 回答 4

7

Google 更新了 google_play_service 库,但没有更新 google play 中的 Play Services 应用。所以我建议您在 Android SDK Manager 中下载“Google play services for Froyo”并将其插入项目而不是当前项目。

于 2013-11-03T10:09:01.770 回答
0
<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />
于 2013-09-19T08:15:08.597 回答
0

我刚刚让它在我的笔记本电脑上工作。然而,我笔记本电脑上的问题只是授权失败。好像我在另一台电脑上的日食被窃听了。工作项目中的代码几乎完全相同,但有以下例外:

在清单中,这些行存在于工作项目中:

<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

在 MainActivity.java 中:

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

    /*Test*/
}

@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中唯一的东西:

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

仍然不知道为什么它在我以前的代码中不起作用。注意:地图在模拟器上仍然是空白的,但在三星 Galaxy S 2.3.3 设备上工作正常

于 2013-09-19T08:40:28.700 回答
0

可能的问题 1:清单中不存在 READ_GSERVICES

<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

链接:http ://t1685.codeinpro.us/q/51502052e8432c04261af736

可能的问题 2:这可能只是我的应用程序的命名空间,但相比之下它可能需要考虑

<permission android:name="com.fooapp.**androidmapsv2**.permission.MAPS_RECEIVE" android:protectionLevel="signature"></permission>
<uses-permission android:name="com.fooapp.**androidmapsv2**.permission.MAPS_RECEIVE" />
于 2013-09-18T20:58:04.427 回答