MapFragment不会加载

时间:2016-05-17 09:31:10

标签: java android eclipse google-maps

我只是想在我的Android应用中查看地图,而且我遇到了一些麻烦。 我一直在关注几个教程,但仍然没有结果。 我从我的sdk管理器下载了谷歌播放服务,我正确地导入了google_play_services_lib。 所以我使用我的包名和我的SHA1从谷歌Api控制台创建了一个谷歌地图API密钥,我发现使用cmd,在窗口>偏好> android>构建的eclipse中,我在两个方面都得到了相同的SHA1所以我认为&# 39;是的。

所以我设置了这样的清单

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

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="21" />

<permission android:name="com.example.googlemapprova.permission.MAPS_RECEIVE"
     android:protectionLevel="signature"/>
<uses-permission android:name="com.example.googlemapprova.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.ACCESS_NETWORK_STATE" />
<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="my api key" />
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
    <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>
</application>

在我的布局文件中,我只创建了一个地图片段

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

我已经更改了android:name with class =&#34; com.google.android.gms.maps.SupportMapFragment&#34;因为教程

然后我的主要

package com.example.googlemapprova;

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.widget.Toast;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;

public class MainActivity extends FragmentActivity {

GoogleMap googleMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    try {
        // Loading map
        initilizeMap();
        initializeUiSettings();
        initializeMapLocationSettings();
        initializeMapTraffic();
        initializeMapType();
        initializeMapViewSettings();

    } catch (Exception e) {
        e.printStackTrace();
    }
}

@Override
protected void onResume() {
    super.onResume();
    // initilizeMap();
}

private void initilizeMap() {

    googleMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

    // check if map is created successfully or not
    if (googleMap == null) {
        Toast.makeText(getApplicationContext(), "Sorry! unable to create maps", Toast.LENGTH_SHORT).show();
    }
}

public void initializeUiSettings() {
    googleMap.getUiSettings().setCompassEnabled(true);
    googleMap.getUiSettings().setRotateGesturesEnabled(false);
    googleMap.getUiSettings().setTiltGesturesEnabled(true);
    googleMap.getUiSettings().setZoomControlsEnabled(true);
    googleMap.getUiSettings().setMyLocationButtonEnabled(true);
}

public void initializeMapLocationSettings() {
    googleMap.setMyLocationEnabled(true);
}

public void initializeMapTraffic() {
    googleMap.setTrafficEnabled(true);
}

public void initializeMapType() {
    googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
}

public void initializeMapViewSettings() {
    googleMap.setIndoorEnabled(true);
    googleMap.setBuildingsEnabled(false);
}

}

我从教程中获取了我的主要代码并稍微修改了一下,这样我管理我的应用程序就不会崩溃(如果我不使用此代码,我的应用程序将崩溃)。 this is what i get 我正在使用motorola moto g3手机试一试 所以我试着从Play商店下载手机上的aLogcat,但我什么都没得到,也许我用错了方法使用它。 this is the tutorial i used the most

有人可以帮助我在我的应用上查看地图吗?我无法理解它为什么不起作用 我现在正试图获得Logcat

1 个答案:

答案 0 :(得分:0)

您的地图片段已加载,但地图内容未加载。

您放置API密钥的位置?

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