0

我正在阅读有关移动地图应用程序的 Google 教程。我设法在 Android 虚拟手机中编译和运行我的应用程序:

5.4 FWVGA (480x854:mdpi)。

当我真正在手机中启动应用程序时,我只得到一张带有方形背景的空地图(如几何纸)。

我的感觉是这里出了点问题:

资源/布局/activity_main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

</RelativeLayout>

资源/布局/main.xml:

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey="blablabla"
/>

AndroidManifest.xml:

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <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=".HelloGoogleMaps" android:label="@string/app_name"
            android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
       </activity>
    </application>
</manifest>

所以要清楚,我如何让我的应用程序连接到互联网并加载磁贴?

谢谢

杰尼亚

4

3 回答 3

2

除了检查清单文件中是否授予了 Internet 权限(这是我开始开发新应用程序时经常忘记的东西),您在 MapView 对象的 apiKey 属性中使用的键是专门为调试目的而创建的? 如果不是这种情况,您将无法看到图块,尽管您仍然可以与 MapView 进行交互。

于 2012-11-20T21:11:00.640 回答
1

假设您项目中引用了 Google API,但您没有API 密钥 - 转到此处并使用此文档来指导您完成使项目准备好使用的过程!

于 2012-11-20T21:53:02.917 回答
0

这个链接是一个完整的解决方案:

(pt-br) http://developerai.blogspot.com.br/2012/07/android-development-google-maps.html

不要忘记

 <uses-library android:name="com.google.android.maps" />

如果您是高级开发人员并且喜欢更好的应用程序,请了解:

https://github.com/cyrilmottier/Polaris

于 2012-11-20T21:31:32.473 回答