我使用Eclipse,Android SDK,并且我有一个类不要将每个代码都放在主要活动中:
blablabla
import blablabla
..
..
public class Mhelper {
static final LatLng HAMBURG = new LatLng(53.558, 9.927);
static final LatLng KIEL = new LatLng(53.551, 9.993);
private GoogleMap map;
Context mContext;
public Mhelper(Context ctx) {
this.mContext= ctx;
}
public void pinpointlocation(Context context){
map = ((SupportMapFragment) ((FragmentActivity) mContext).getSupportFragmentManager().findFragmentById(R.id.mapview))
.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)));
// Move the camera instantly to hamburg with a zoom of 15.
map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));
// Zoom in, animating the camera.
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
}
....
....
....
我将视图放在xml:
中<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
...
...
...
<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="KEY"
/>
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/button2" />
</RelativeLayout>
程序编译安装没有任何错误但是当我在模拟器中运行app时,我得到:
blablabla
04-23 11:36:32.408: E/AndroidRuntime(2515): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.hach/com.example.hach.MainActivity}: android.view.InflateException: Binary XML file line #48: Error inflating class com.google.android.maps.MapView
blablabla
04-23 11:36:32.408: E/AndroidRuntime(2515): Caused by: android.view.InflateException: Binary XML file line #48: Error inflating class com.google.android.maps.MapView
blablabla
04-23 11:36:32.408: E/AndroidRuntime(2515): Caused by: java.lang.IllegalArgumentException: MapViews can only be created inside instances of MapActivity.
第一个只是承认他不应该使用viewmap而第二个告诉读这个refrence哪个好,但我读了它,找不到任何我可以在我的项目中应用的解决方案。第三个说谷歌地图Android API v2 是好的。
我发现this链接这是一个很好的例子,但我不想使用标签,我应该吗?除了这行
import com.google.android.maps.MapActivity;
是我创建新类时的问题,我想扩展MapActivity,IDE不知道 MapActivity 。
在没有完全更改应用程序的情况下,我可以对当前项目做些什么,以显示地图并指定一个位置作为我的代码?我应该扩展 MapActivity 并将其添加到项目中吗?有没有像mapview这样的简单解决方案?
答案 0 :(得分:0)
我把它搞定了。我首先删除地图视图(CommonsWare是正确的,它在V1中)然后我添加
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
要显示。然后它才能工作。这个问题是由一些不合格的网站引起的,它试图在没有测试的情况下放置教程。