gpt4 book ai didi

android - 谷歌地图 V2 在 4.4 上显示黑屏,左下角显示谷歌标志

转载 作者:搜寻专家 更新时间:2023-11-01 07:55:33 25 4
gpt4 key购买 nike

我快要疯了,我浏览了很多帖子,但似乎没有任何效果。正如我所检查的那样,我的设备肯定连接到播放服务,并且当我查看我的 api 凭据时,我的 key 正在显示我的应用程序。出于某种对我来说未知的原因,我似乎无法让它显示 map ,只是空白屏幕,而且我已经花了 3 个小时在上面,但没有运气。对于为什么我无法显示 map 的任何帮助,我们将不胜感激!我什至尝试过重新生成 key ,但没有成功。

AndroidMainifest.xml

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

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

<uses-permission android:name="com.*****.****.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<!-- The following two permissions are not required to use
Google Maps Android API v2, but are recommended. -->
<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" >
<activity
android:name=".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>

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="********-***********"/>

</application>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<fragment
android:id="@+id/mapView"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</RelativeLayout>

主 Activity .java

package com.zoome.natalie.zoo;

import android.support.v7.app.ActionBarActivity;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;


public class MainActivity extends Activity {

private final static int PLAY_SERVICES_RESOLUTION_REQUEST = 9000;
GoogleMap googleMap;
// tag used on log messages.
static final String TAG = "HelloGooglePlayServices";

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

@Override
protected void onResume() {
//auto-generated method stub
super.onResume();

// You need to do the Play Services APK check here too.
checkPlayServices();

}

private boolean checkPlayServices() {
int resultCode = GooglePlayServicesUtil
.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
GooglePlayServicesUtil.getErrorDialog(resultCode, this,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Log.i(TAG, "Device not supported.");
finish();
}
return false;
}
return 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.menu_main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}

private void createMap() {
try {
if (null == googleMap) {
googleMap = ((MapFragment) getFragmentManager().findFragmentById(
R.id.mapView)).getMap();

/**
* If the map is still null after attempted initialisation,
* show an error to the user
*/
if (null == googleMap) {
Toast.makeText(getApplicationContext(),
"Error creating map", Toast.LENGTH_SHORT).show();
}
}
} catch (NullPointerException exception) {
Log.e("mapApp", exception.toString());
}
}
}

如果 build.gradle 模块有用

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "com.zoome.natalie.zoo"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'

compile 'com.google.android.gms:play-services-maps:6.5.87'
}

调试 key 是我最不确定的,但我认为它是正确的,任何尝试或我犯错误的地方的帮助将不胜感激。谢谢。

最佳答案

假设您已经安装了 SDK(我相信您会这样做,因为您会看到带有 Google Logo 的灰色屏幕),您要做的第一件事就是创建一个调试和发布 keystore 。完整的文档在这里:

https://developers.google.com/maps/documentation/android/start

对于 Mac/Linux 用户来说,这是快速而肮脏的。在终端中输入以下内容:

keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android

然后您应该会看到用于调试构建的 SHA1 哈希。将其复制并粘贴到某处。

我不确定您是否正处于尝试编译此应用程序以发布的地步,但现在让我们完成这些 Action ,让您免去以后的麻烦。在 Android Studio 中点击 Build -> Generate Signed APK

这将引导您完成一个小的演练过程,您可以在其中选择要编译的模块,然后选择要用于该模块的 key 。此时你要点击新建

这将让您决定要将发布 key 保存在何处,让您设置密码,届时您还可以设置其他一些选项。

现在获取您的发布 key 的 SHA1 哈希值,通过使用与上面相同的 keytool 命令,但替换您刚刚创建的文件的路径和您刚刚用作密码的任何密码参数.

现在去

https://console.developers.google.com/project

选择您的项目并转到左侧的Credentials 链接。如果您还没有,请为自己创建一个适用于 Android 的公共(public) API 访问 key 。如果您有,请单击编辑允许的 Android 应用程序 按钮。将您之前记下的两个 SHA1 key 粘贴到此处,然后在每行之后放置“;your.package.name”。现在,将 API KEY 复制并粘贴到某处。

返回 Android Studio 并在调试和发布文件夹中找到 google_maps_api.xml 文件。路径应该是:

package/app/src/debug/res/values/google_maps_api.xml包/应用程序/src/release/res/values/google_maps_api.xml

打开每一个并像这样粘贴:

<string name="google_maps_key" templateMergeStrategy="preserve">API KEY</string>

最后,进入你的 AndroidManifest 并让它这样写:

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

喝啤酒庆祝

关于android - 谷歌地图 V2 在 4.4 上显示黑屏,左下角显示谷歌标志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28204691/

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