谷歌地图仅在android工作室上显示灰色瓷砖

时间:2017-09-20 06:39:38

标签: android api google-maps dictionary key

我创建了一个带有Google地图活动的新Android项目。我的活动代码是:

public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {

private GoogleMap mMap;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_maps);
    // Obtain the SupportMapFragment and get notified when the map is ready to be used.
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}


/**
 * Manipulates the map once available.
 * This callback is triggered when the map is ready to be used.
 * This is where we can add markers or lines, add listeners or move the camera. In this case,
 * we just add a marker near Sydney, Australia.
 * If Google Play services is not installed on the device, the user will be prompted to install
 * it inside the SupportMapFragment. This method will only be triggered once the user has
 * installed Google Play services and returned to the app.
 */
@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    // Add a marker in Sydney and move the camera
    LatLng sydney = new LatLng(-34, 151);
    mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
    mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}

}

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>

<!--
     The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
     Google Maps Android API v2, but you must specify either coarse or fine
     location permissions for the 'MyLocation' functionality.
-->

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="xxxxxx.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<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-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

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

<uses-permission android:name="xxxxx.mapservice.permission.MAPS_RECIEVE"/>
<uses-permission android:name="xxxxx.provides.gsf.permission.READ_GSERVICES"/>
<permission android:name="xxxxx.mapservice.permission.MAPS_RECIEVE"
    android:protectionLevel="signature"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <!--
         The API key for Google Maps-based APIs is defined as a string resource.
         (See the file "res/values/google_maps_api.xml").
         Note that the API key is linked to the encryption key used to sign the APK.
         You need a different API key for each encryption key, including the release key that is used to
         sign the APK for publishing.
         You can define the keys for the debug and release targets in src/debug/ and src/release/. 
    -->
    <meta-data
        android:name="com.google.android.geo.API_KEY"
        android:value="@string/google_maps_key" />

    <activity
        android:name=".MapsActivity"
        android:label="@string/title_activity_maps">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

我得到了一个谷歌Api密钥并用sh1键限制它。我按照谷歌文档,但不幸的是我的地图没有加载。

虽然我正在搜索一些评论,建议我删除debug.keystore,但这对我不起作用。我错过了什么?

我的地图布局xml文件也是:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="ir.iuwa.testmap.MapsActivity" />

2 个答案:

答案 0 :(得分:0)

将此添加到应用程序标记之外的清单中并检查

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

答案 1 :(得分:0)

我找到了解决方案! 我错了是生成正确的sha1代码。以前,我使用以下程序在android studio的右侧使用gradle菜单找到了这个键:首先点击gradle然后在app下,Tasks,android,我点击了loginReport:

enter image description here

然后sha1出现在gradle控制台中:

enter image description here

我的falut是这个代码是用于调试模式! 我按照以下步骤为我的发布密钥库获取sha1版本,在google开发人员控制台中输入这个新sha1后,我的地图完全显示。 要获得sha1版本,首先应该复制发布密钥库地址: 去构建&gt;&gt; generateSigendApk并复制密钥库路径。

enter image description here

然后你应该复制android studio使用的jdk的路径。转到文件&gt;&gt; ProjectStructure,你可以看到你的jdk路径。复制此路径并在cmd中转到此文件夹。

enter image description here

然后cd yor jdk然后bin文件夹并复制以下行: keytool -list -v -keystore“你的主题密钥存储路径”-alias“KEY ALIAS” 现在输入并享受你的发布sha1代码:)