0

我已经花了 3 天时间,但找不到解决方案...当我在具有 android 2.2 的设备上启动地图时,我有带有缩放按钮的空白屏幕。Logcat 显示错误消息“ E/copybit: Error opening frame buffer errno=13 (Permission denied) ”。

添加了 google-play-services_lib 和 android-support-v4。

我的安卓清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.testmap"
      android:versionCode="1"
      android:versionName="1.0">

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

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

<permission
        android:name="com.testmap.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>
<uses-permission android:name="com.testmap.permission.MAPS_RECEIVE"/>

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<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" />

<application android:label="@string/app_name"
             android:allowBackup="true"
             android:icon="@drawable/icon_iphone">

    <activity android:name=".MainActivity.MainActivity"
              android:label="@string/app_name"
              android:screenOrientation="portrait"
              android:theme="@android:style/Theme.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
    </activity>


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

</application>

分段:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/mapViewMain"
              android:layout_marginTop="7dp"
              android:name="com.google.android.gms.maps.SupportMapFragment"
              android:layout_width="match_parent"
              android:layout_height="match_parent"/>
4

2 回答 2

0

我认为这是由 sdk 版本引起的。尝试使用 13 的上 sdk。我在 android 4.0(sdk 14)上使用相同的东西。所以如果你改变你的

<uses-sdk android:minSdkVersion="8">

<uses-sdk android:minSdkVersion="14"/>

我认为它会起作用。
编辑:
您正在尝试在 API 8 级设备上使用片段。所以切换到FragmentActivitySupportMapFragment

import android.support.v4.app.FragmentActivity;
import com.google.android.gms.maps.SupportMapFragment;

public class MainActivity extends FragmentActivity {

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

}

要获取地图,请使用..

   FragmentManager myFragmentManager = getSupportFragmentManager();
   SupportMapFragment mySupportMapFragment 
    = (SupportMapFragment)myFragmentManager.findFragmentById(R.id.map);
   myMap = mySupportMapFragment.getMap(); 
于 2013-06-19T18:12:20.027 回答
0

Google Maps API V2在之前的 Android 版本中使用API 12,您需要使用android-support 库来实现向后片段兼容性。此外,您将需要使用FragmentAcitivity已经说过的 aSupportMapFragment和已经做过的 a。

我会建议你阅读我写的这篇博客文章,它将帮助你将这些组件集成到你的应用程序中并让你的地图工作:

谷歌地图 API V2

此外,我认为您的问题可能是由 API 密钥生成错误引起的,请查看此博客文章,看看您是否正确执行了所有步骤:

谷歌地图 API V2 密钥

于 2013-06-20T07:02:24.987 回答