其他分享
首页 > 其他分享> > 无法在Android Studio中打开Android Google Mapview活动

无法在Android Studio中打开Android Google Mapview活动

作者:互联网

我是Android新手,正在尝试在Android手机上显示Google Map.我创建了适用于任何Android应用程序的API密钥(我未为我的应用程序提供任何特定的SHA).我猜应该没关系.使用Google Android教程,我正在执行所有步骤,我在左下角获得了google水印,但没有地图.我将发布所有正在使用的代码.我试图使用Android Studio 1.2.1.1中附带的Google Maps Activity.我没有任何错误,但也没有得到地图.

我正在使用MapFragment,因为它似乎比MapView容易.

我还查看了该API的开发者控制台-我没有任何流量-可能是因为没有使用API​​密钥,所以我的应用程序没有得到报告吗?我怀疑-该如何测试?

我正在尝试按照此处的步骤操作-https://developers.google.com/maps/documentation/android/map

另一个相关的查询是,我假设我可以创建多个布局.我从用作“启动画面”的空白活动开始,然后尝试进入“地图活动”-我无法在Android Studio中创建“地图活动”.我可以通过向导将其创建为第一个活动,但不能将其创建为第二个活动.我想念什么吗?

任何帮助表示赞赏

AndroidManifest.xml



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

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <!--
 The ACCESS_COARSE/FINE_LOCATION 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="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <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="API_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>

</manifest>

我还使用了File-> Project Structure-> Dependencies-App->并发现其中包含Google Play服务.

MapsActivity.java

    package com.nbapl.avapps.mapscreen;

import com.google.android.gms.maps.*;
import com.google.android.gms.maps.model.*;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;

public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {


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

        MapFragment mapFragment = (MapFragment) getFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
    }



    @Override
    public void onMapReady(GoogleMap map) {
            map.addMarker(new MarkerOptions()
               .position(new LatLng(0, 0))
               .title("This is the center"));
        }

    }

这是布局xml

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

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/frame"
    android:background="#ffe2ff0e"
    android:clickable="false"
    android:foreground="#fffff9c5">

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.MapFragment" />

</FrameLayout>

具有在模块级别build.gradle设置的依赖项的Gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "23.0.0 rc2"

    defaultConfig {
        applicationId "com.nbapl.avapps.mapscreen"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.google.android.gms:play-services:7.5.0'
    compile 'com.android.support:appcompat-v7:22.2.0'
}

解决方法:

您的活动将创建布局,但是您需要一些其他代码才能实际启动地图:

在MapsActivity.java中:

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

    MapFragment mapFragment = (MapFragment) getFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}

另外,您的活动应实现OnMapReadyCallback以获得更多地图逻辑.请参阅文档,网址为https://developers.google.com/maps/documentation/android/

标签:google-maps,mapactivity,android
来源: https://codeday.me/bug/20191120/2041876.html