Android:MapView 导致“找不到源”。

发布于 2024-12-01 20:05:57 字数 1320 浏览 1 评论 0原文

我有:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沙与沫 2024-12-08 20:05:57

将您的 Activity 更改为 MapActivity

并在 XML 中提供 MapView 标记 android:id="@+id/mapview"
也重写该方法

@Override
protected boolean isRouteDisplayed() {
    return false;
}

Change your Activity to MapActivity.

and also give the MapView tag android:id="@+id/mapview" in XML.
also override the method

@Override
protected boolean isRouteDisplayed() {
    return false;
}
爱人如己 2024-12-08 20:05:57

您需要这个: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);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文