为什么我在地图应用程序中获得白屏

时间:2014-01-08 22:31:26

标签: android eclipse google-maps google-maps-android-api-2

我是新来的,也是编程新手。 我正在制作地图,我已经遵循了很多教程,所有这些都非常相似,但我不知道为什么我的应用程序不起作用。该应用程序不会崩溃,但当我打开地图时,会显示应用程序标题和应显示地图的白色屏幕。你知道为什么会这样吗?

这是我的应用清单,活动:main.xml和mainactivity.java,也许这是我找不到的错误。

另外如果帮助logcat说我:打开跟踪文件时出错:没有这样的文件或目录(2)

APP MANIFEST

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

    <permission
      android:name="com.tdr.mapa1.permission.MAPS_RECEIVE"
      android:protectionLevel="signature"/>

<uses-permission android:name="permission_name"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.tdr.mapa1.permission.MAPS_RECEIVE"/>
<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"/>

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

    <uses-sdk
        android:minSdkVersion="12" 
        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" 
                  android:required="false"/>

    <activity
        android:name="com.tdr.mapa1.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>
    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="<API_KEY>"/>

    </application>

    <meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />

    </manifest>

主要活动

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

</RelativeLayout>

MAINACTIVITY.JAVA

package com.tdr.mapa1;

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

public class MainActivity extends Activity {

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



    }
}

希望你能帮助我。

2 个答案:

答案 0 :(得分:2)

请参阅此处,只需使用清单文件中的密钥更改api密钥,然后按照以下步骤操作: 并且确保使用android清单文件中提到的包名称生成api密钥,并且google_play_services_lib项目应仅存在于项目的工作空间中。

清单文件:              

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

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

    <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" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.geeklabs.map.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>

        <meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="replace with your API key"/>

    </application>

</manifest>

MainActivity.java:

    package com.geeklabs.map;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

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

}

activity_main.xml中:

    <?xml version="1.0" encoding="utf-8"?>
    <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"/>

确保以下步骤正确无误:

步骤: *确保该设备具有Google Play服务APK *安装Google Play服务版。超过2

enter image description here

  • https://code.google.com/apis/console/
  • 创建项目
  • 启用“Google Maps Android API v2” enter image description here
  • 在API控制台注册项目中的SHA1(现在,你需要写SHA1;你的.app.package.name )并获取API KEY
  • 将目录ANDROID_SDK_DIR / extras / google / google_play_services / libproject / google-play-services_lib复制到项目的根目录
  • 将下一行添加到YOUR_PROJECT / project.properties

android.library.reference.1=google-play-services_lib

  • 将下一行添加到YOUR_PROJECT / proguard-project.txt

-keep class * extends java.util.ListResourceBundle {

protected Object[][] getContents();

}

好的,现在您已准备好使用适用于Android的Google Map API V2创建自己的Google地图应用。

如果使用min SDK = 8创建应用程序,请使用android支持库v4 + SupportMapFragment而不是MapFragment。

得到这个后告诉我。

答案 1 :(得分:0)

首先是你的错误:

Error opening trace file: No such file or directory (2)

没有任何意义,你应该节点注意它。

其次,两个元数据标签都应该在应用范围内,如下所示:

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

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
 </application>

最后,您实际上并没有在活动布局文件中创建任何地图对象,那里有一个空的RelativeLayout,因此是空的白色屏幕。您需要在其中添加MapFragmentSupportMapFramgnet,具体取决于您的目标API。 (在你的情况下,它将是MapFragment。)

像这样:

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

您可以从我就此主题撰写的博客文章中获取更多详细信息:

Google Maps API V2 Guide