繁体   English   中英

Google地图未在Android应用上加载,运行该应用时出现空白屏幕

[英]Google map isnt loading on android app, blank screen appears when app is run

请找到下面的代码。

Manifest.xml-添加了所有必需的权限和API密钥

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

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


    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="com.achra.fmap.permission.MAPS_RECEIVE"/>
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

    <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" />



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

    <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.achra.fmap.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>
        <activity android:name="com.achra.fmap.Activity_map"/>
        <activity android:name=".FMap" 
                   android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar"/>
        <meta-data
           android:name="com.google.android.maps.v2.API_KEY"
           android:value="removed key intentionally" />

    </application>


</manifest>

map_view.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/map"
        android:name="com.google.android.gms.maps.MapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>

Activity_Map.java

    package com.achra.fmap;

    import android.app.Activity;
    import android.os.Bundle;
    import android.widget.Toast;

    import com.google.android.gms.maps.GoogleMap;
    import com.google.android.gms.maps.MapFragment;

    public class Activity_map extends Activity {

    // Google Map
    private GoogleMap googleMap;

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.map_view);

        try {
            // Loading map
            initilizeMap();

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

    }

    /**
     * function to load map. If map is not created it will create it for you
     * */
    private void initilizeMap() {
        if (googleMap == null) {
            googleMap = ((MapFragment) getFragmentManager().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();
            }
        }
    }

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

    }

我们可以在屏幕上看到地图网格,但是地图没有出现。 请进一步指导。

我们正在使用Google Maps API v2。

看起来您的AndroidManifest.xml中缺少com.google.android.gms.version

如果查看日志,则可能会看到以下内容:

You must have the following declaration within the <application> element:        <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

尝试将其添加到您的API密钥下方:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM