我正在尝试在应用程序的活动中显示地图,请记住我使用的是 Android Studio 0.3.1;切换到 Eclipse 不是一种选择,除非在 Android Studio 中这样做是绝对不可能的。
我已经关注了多个关于如何做到这一点的教程,最近的一个是Google Developers one和Vogella 的第二次尝试,以及类似的问题,例如但不限于this和this;一切都无济于事,遵循上述教程只会在运行时给我一个崩溃,并显示以下消息:
E/AndroidRuntime:致命异常:主要 java.lang.RuntimeException:无法启动活动 ComponentInfo{com.example.maptestproject/com.example.maptestproject.MainActivity}:android.view.InflateException:二进制 XML 文件第 69 行:膨胀错误类片段
很自然,还尝试检查在 Google Play API 中找到的示例,但我无法在 Android Studio 中运行它,因为如果它在启动前具有 Make 选项或“APK 路径”,它会给我一个“未指定输出路径”错误未指定”如果我删除它(如几个地方所建议的那样)。
目前,我的测试项目如下,在实际项目中MY_API_KEY替换为我实际的API key:
显现:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.maptestproject"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="17" />
<permission
android:name="com.example.maptestproject.maps.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<permission
android:protectionLevel="signature" />
<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.example.maptestproject.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.MY_API_KEY"
android:value="MY_API_KEY"/>
</application>
</manifest>
MainActivity.java:
package com.example.maptestproject;
import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
public class MainActivity extends FragmentActivity {
static final LatLng HAMBURG = new LatLng(53.558, 9.927);
static final LatLng KIEL = new LatLng(53.551, 9.993);
private GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG).title("Hamburg"));
Marker kiel = map.addMarker(new MarkerOptions()
.position(KIEL)
.title("Kiel")
.snippet("Kiel is cool")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.ic_launcher)));
map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
}
}
活动主.xml:
<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.MapFragment" />
</RelativeLayout>
更具体一点,应用程序需要显示特定位置,然后跟踪从用户当前位置到标记位置的路径(或使用谷歌地图发送到 webview,或打开设备的 gps,更简单的方法) ,但是任何使事情正常工作的投入都将不胜感激。
对于这个很长的问题,我深表歉意,但这已经给我带来了近 2 天的麻烦。