无法显示MapView
我在教程MapView下面试过。
我已经添加了
1)单声道,Android.Googlemaps。
2)使用Android.Locations;
3)实现:public class Activity1:MapActivity
这些是错误消息:
错误CS0115:'MapView.Activity1.IsRouteDisplayed':找不到合适的方法覆盖(CS0115)(MapView)
错误CS0246:无法找到类型或命名空间名称'MapActivity'(您是否缺少using指令或程序集引用?)(CS0246)(MapView)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<com.google.android.maps.MapView
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:apiKey="my google map key here" />
</LinearLayout>
[Activity (Label = "MapView", MainLauncher = true)]
public class Activity1 : MapActivity
{
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
SetContentView (Resource.Layout.Main);
}
protected override bool IsRouteDisplayed
{
get
{
return false;
}
}
}
希望你对此有所帮助。
谢谢
正如评论者已经提到的那样,Google maps v1不再适用于新应用程序。
相反,您必须使用Google Play服务中的v2。
使用v2并不完全简单 - Google授权很难重新分发Google play组件,但有一个可用的教程。
链接地址: http://www.djcxy.com/p/24191.html上一篇: Cannot displaying MapView
下一篇: Android Background ListView becomes black when scrolling