gpt4 book ai didi

java - Google Maps API v3 仅显示灰框

转载 作者:行者123 更新时间:2023-12-01 14:27:25 25 4
gpt4 key购买 nike

新开发人员,但过去几天我一直在尝试解决 Android 设备上显示灰色框而不是 map 的问题。我已经阅读了有关这些框的几乎所有内容,但有效的解决方案因为其他人不为我工作。

我使用的 api key 来自 java JRE 7 文件夹中的 keytool,使用 bin 文件夹中的命令:keytool -list -alias androiddebugkey -keystore "C:\Users\ben.android\debug.keystore"-storepass android -keypass android -v....我相信这是我读过的调试 API key here以及其他地方。

这是我收到的错误 /image/qaHfy.jpg 。我相信我已经强调了“有趣”的部分,即java.io.IOException:服务器返回:3

这似乎意味着我的 API key 有问题,但我已经制作了多个新 key ,但似乎都无法解决问题!我还没有上传应用程序,所以我认为“签名/未签名”导出并不重要,但那是因为我不完全理解它。

我尝试遵循多个教程,例如来自 Lynda.com 的教程以及各种 YouTube 教程,但它们都是 Google map v2 而不是 v3,因此这可能是问题所在。我们将非常感谢您的帮助并挽救生命!

这是我的主要 java 文件:

package com.bentseytlin.gmap2;

import com.google.android.maps.MapActivity;

import com.google.android.maps.MapView;

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

public class MainActivity extends MapActivity {

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

MapView view = (MapView) findViewById(R.id.themap);
view.setBuiltInZoomControls(true);

}

@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;
}

@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}

}

这是我的 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<com.google.android.maps.MapView

android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/themap"
android:clickable="true"
android:apiKey="AIzaSyB1gqlqGQZCH1TlrDhp5BP9Pm9k4Jm_2co"
/>

</RelativeLayout>

这是我的 list 文件:

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

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

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps"/>
<activity
android:name="com.bentseytlin.gmap2.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>

再次感谢!

最佳答案

确保您已执行以下链接中的所有步骤

https://developers.google.com/maps/documentation/android/start 。 (API v2)

您应该在 map 项目中引用 Google 服务库项目

下载 Google Play 服务。转到 Windows。转到 Android SDK 管理器。在“附加”下选择“Google Play 服务”。如果未安装,请安装该软件包。

将 google-play services_lib 库项目复制到您的工作区。库项目可以在以下路径下找到。

 <android-sdk-folder>/extras/google/google_play_services/libproject/google-play-services_lib library project .

将库项目导入到您的 Eclipse 中。

单击"file">“导入”,选择“Android”>“将现有 Android 代码导入工作区”,然后浏览工作区导入库项目。您可以检查它是否是库项目。右键单击库项目。转到属性。单击左侧面板上的 Android。您将看到是否已检查库。

引用图书馆项目

右键单击您的 Android map 项目。转到属性。选择安卓。单击“添加浏览”并添加库项目。

假设你有 key 。

确保您已在“服务”选项卡下的 Google API 控制台中启用 Android 版 Google map 。

您的最小 sdk 是 10。您应该使用支持 fragment 。

<fragment
class="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

您的 Activity 必须扩展 FragmentActivity

SupportMapFragment fm = (SupportMapFragment)  getSupportFragmentManager().findFragmentById(R.id.map);
GoogleMap mMap = fm.getMap();

确保您已添加支持库

另请确保您导入了以下内容

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

将这些添加到 list 文件中

  <permission
android:name="com.bentseytlin.gmap2.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.bentseytlin.gmap2.permission.MAPS_RECEIVE"/>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>

在应用程序标签下的 list 中添加 key

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

关于java - Google Maps API v3 仅显示灰框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17096745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com