Android:MapView 导致“找不到源”。
我有:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
作为<<的孩子明显>。
我有:
<uses-library android:name="com.google.android.maps" />
作为<<的孩子应用>。
myview.xml 包含:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/secondaryColor"
>
<com.google.android.maps.MapView
android:layout_width="260dp"
android:layout_height="100dp"
android:apiKey=OMMITTED
android:id="@+id/mapView"/>
</RelativeLayout>
MyView.java:
public class MyView extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.myview);
}
}
当我运行程序时,出现“未找到源”错误,控制台或 logcat 中没有任何内容。当我取出整个 com.google.android.maps.MapView 标签时,程序运行正常。我正在运行目标为“Google APIs API Level 7”的模拟器。我的项目构建目标是 API 级别 7 的“Google API”。我现在陷入困境!
I have :
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
As a child of < manifest >.
I have :
<uses-library android:name="com.google.android.maps" />
As a child of < application >.
myview.xml contains:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/secondaryColor"
>
<com.google.android.maps.MapView
android:layout_width="260dp"
android:layout_height="100dp"
android:apiKey=OMMITTED
android:id="@+id/mapView"/>
</RelativeLayout>
MyView.java:
public class MyView extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.myview);
}
}
When I run the program, I get a "source not found" error with nothing in the console or the logcat. When I take out the entire com.google.android.maps.MapView tag, the program runs fine. I'm running the simulator with target "Google APIs API Level 7". My project build target is "Google APIs" for API Level 7. I'm stuck at this point!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的
Activity
更改为MapActivity
。并在 XML 中提供
MapView
标记android:id="@+id/mapview"
。也重写该方法
Change your
Activity
toMapActivity
.and also give the
MapView
tagandroid:id="@+id/mapview"
in XML.also override the method
您需要这个:MyView 扩展 MapActivity 和 onCreate 方法
mapView = (MapView) findViewById(R.id.mapView);
You need this : MyView extends MapActivity and on onCreate method
mapView = (MapView) findViewById(R.id.mapView);