gpt4 book ai didi

android - 未定义 MapFragment 类型的 GetMap()

转载 作者:搜寻专家 更新时间:2023-11-01 07:55:12 25 4
gpt4 key购买 nike

我正在尝试让 map fragment 在我的应用程序中运行,但在尝试获取我的 GoogleMap 对象时我仍然遇到错误。

MapFragment.java

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.model.LatLng;

public class MapFragment extends Fragment {

private GoogleMap map;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

View view = inflater.inflate(R.layout.fragment_map, container, false);

map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

return view;
}
}

我的框架代码是

fragment_map.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >


<Button
android:id="@+id/btnEugene"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:onClick="onClick_Eugene"
android:text="Eugene" />

<Button
android:id="@+id/btnHpc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:onClick="onClick_HPC"
android:text="HPC" />

<Button
android:id="@+id/btnTheGrove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:onClick="onClick_FG"
android:text="Forest Grove" />

<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_below="@+id/btnTheGrove"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

我得到的确切错误是

The method getMap() is undefined for the type MapFragment

我做错了什么?

最佳答案

getMap() 已弃用。尝试使用 getMapAsync

编辑*哦,还要将您的类(class)名称更改为不同的名称导入 com.google.android.gms.maps.MapFragment 这是您应该在 xml 中使用的类,并且具有 getMap() 方法:)

关于android - 未定义 MapFragment 类型的 GetMap(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28741336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com