findViewById 对于布局中的视图返回 null

发布于 2024-12-02 15:01:04 字数 981 浏览 1 评论 0原文

我的 MapView 有一些奇怪的问题。

<?xml version="1.0" encoding="utf-8"?>
<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="my-api-key"/>

并且 mapView = (MapView)findViewById(R.id.mapview); 为我返回 null 。但MapView显示正常。我做错了什么?

UPD:这是我的班级

public class WayMapActivity extends MapActivity {

private MapView mapView = null;

@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    this.setContentView(R.layout.maplayout);

    mapView = (MapView)findViewById(R.id.mapview);
    mapView.setBuiltInZoomControls(true);
}

@Override
public void onResume(){
    super.onResume();

}

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

I have some strange problem, with the MapView.

<?xml version="1.0" encoding="utf-8"?>
<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="my-api-key"/>

And mapView = (MapView)findViewById(R.id.mapview); return null for me. But MapView displayed normaly. What i'm doing wrong?

UPD: There is my class

public class WayMapActivity extends MapActivity {

private MapView mapView = null;

@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    this.setContentView(R.layout.maplayout);

    mapView = (MapView)findViewById(R.id.mapview);
    mapView.setBuiltInZoomControls(true);
}

@Override
public void onResume(){
    super.onResume();

}

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

踏雪无痕 2024-12-09 15:01:04

您是否在 findViewById 之前调用 setContentView(layout)

然后尝试清理并重建您的项目。有时需要重建R

Do you call setContentView(layout) before findViewById?

Then try to clean and rebuild your project. Sometimes it is necessary to rebuild R

長街聽風 2024-12-09 15:01:04

这种情况时常发生在我身上。

  1. 删除 gen 文件夹
  2. 清理项目
  3. 重新运行

This happens to me from time to time.

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