一切都运转良好,我唯一的问题就是当我把城市改为我国南方的某个地方时,我得到了常见的“app停止工作问题”但是没关系,我也觉得搞砸了这件事是当我尝试导出应用程序并填充密钥库字段等时。
我在谷歌的各个地方进行了搜索,并没有发现任何有用的内容,到目前为止我尝试过的所有解决方案都失败了。包含: - 仅从地图开始创建一个全新项目。我仍然只得到灰色瓷砖而没有地图。 (我也尝试使用MapFragment而不是SupportMapFragment) - 我删除了debug.keystore甚至default.keyset并生成了几次API密钥,但仍然无效。
以下是代码,但我认为它没有任何问题: The Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.pfetest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<!-- External storage for caching. -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<!-- My Location -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<!-- Maps API needs OpenGL ES 2.0. -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<application
android:allowBackup="true"
android:icon="@drawable/icon_pfe"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<meta-data android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyDMsGnxt0GrU7Se5arkExJ96uLKqJWmjcQ"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.example.pfe.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.example.pfe.Couverture"
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>
</manifest>
我在onCreate()方法的MainActivity上使用此方法检索地图
SupportMapFragment fm = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
googleMap = fm.getMap();
</code>
仍然需要一点点尝试捕获它,但它正在工作。
布局就是这样。
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/m1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="1"
android:orientation="horizontal"
tools:ignore="NewApi" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="458dp"
android:layout_column="0"
android:layout_gravity="left|fill_vertical"
android:layout_row="2"
class="com.google.android.gms.maps.SupportMapFragment" />
</GridLayout>
我只想按下编译按钮并让地图正常工作,所以如果有人可以提供任何帮助,我将非常感激!
答案 0 :(得分:0)
问题解决了。
以下是我为遇到此类问题的人所做的事情:我首先删除了项目并将其重新导入到eclipse中,完全重命名了包,删除了debug.keystore文件并重新构建了一个新项目然后重新生成一个新的API密钥,并使用新的SHA1指纹将其放入我的清单。 问题是,我做了以上所有这些都没有成功,并决定暂时离开它并重新尝试不时地运行它(没有触及源代码),今天它只是工作所以可能API密钥需要一些时间正常运作。
如果你遇到同样的问题,请随时问我任何细节!