我正在尝试运行一个简单的基于地图的应用程序但是当我在设备上安装并尝试“打开”时,我收到错误“遗憾的是应用程序已经停止”在模拟器上我收到了消息:
[2014-03-18 21:37:16 - FirstMap] Installation error: Unknown failure
[2014-03-18 21:37:16 - FirstMap] Please check logcat output for more details.
[2014-03-18 21:37:16 - FirstMap] Launch canceled!
为什么我会收到此消息?我认为我的代码看起来不错,因为我遵循了以下步骤:https://developers.google.com/maps/documentation/android/v1/hello-mapview?
这是我的代码:
MainActivity.java :
package com.example.firstmap;
import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
public class MainActivity extends MapActivity {
@Override
protected boolean isRouteDisplayed() {
return false;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
}
}
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="mykey"
/>
AndroidManifect.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.firstmap"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.firstmap.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>
</application>
</manifest>
答案 0 :(得分:0)
请参阅我的帖子:
Want to use GoogleMaps - OnMyLocationChangeListener but can't implement it? Any other options
我已经描述了究竟要使用什么以及如何使用。
希望你觉得它有用.. :))
答案 1 :(得分:0)
使用Google Map Api V2,您必须做的重要更改是
1)利用
<fragment
android:id="@+id/map"
android:name="android.app.DialogFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
即你必须在activity_main.xml中使用fragment标签而不是mapview标签。
2)参考Google Play服务.....
示例:Google地图无法添加对Play服务的引用
推荐实施Google Maps Api V2的新手的最佳链接:http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/