gpt4 book ai didi

android - 是否可以将 MapView 与 FragmentManager 和 ListFragment 一起使用

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:58:22 25 4
gpt4 key购买 nike

我的应用程序在左侧使用 ListFragment,用户可以使用它来选择要在右侧使用的 fragment 。

在排序上似乎不可能多次显示 MapView。第一个问题是每个 Activity 只允许一个 MapView 实例。

# Exception 1:
You are only allowed to have a single MapView in a MapActivity

因此,我将我的 MapView 和容器保存在 Activity 类中:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FragmentManager.enableDebugLogging(true);
setContentView(R.layout.main);
mapViewContainer = LayoutInflater.from(this).inflate(R.layout.maplayout, null);
mapView = (MapView) mapViewContainer.findViewById(R.id.map_view);
}

但是,这给了我下一个问题:

# Exception 2:
The specified child already has a parent.
You must call removeView() on the child’s parent first.

我尝试使用以下代码删除 View :

((ViewGroup)mapViewContainer).removeView(mapView);
((ViewGroup)mapView.getParent()).removeView(mapView);

得到一个 NullPointerExeption。

如果您有任何好的想法,我将不胜感激,或者如果您成功地做到了这一点,是否可以分享?

谢谢:)

最佳答案

是的,也遇到了这个。

不要在您的 fragment 的 XML 布局文件中添加您的 MapView。相反,只需为其留一个位置,例如,在 LinearLayout 中使用 id="@+id/your_map_container_id"

在 YourMapContainerFragment 中声明一个 MapView 私有(private)成员:

public class YourMapContainerFragment extends Fragment {
private MapView mMapView;
//...

然后,在 YourMapContainerFragment 的 onCreateView() 中这样做:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// ... Inflate your fragment's layout...
// ...
if (mMapView == null) {
mMapView = new MapView(getActivity(), /*String*/YOUR_MAPS_API_KEY);
} else {
((ViewGroup)mMapView.getParent()).removeView(mMapView);
}
ViewGroup mapContainer = (ViewGroup) fragmentLayout.findViewById(R.id.your_map_container_id);
mapContainer.addView(mMapView);
// ...
}

这将使相同的 MapView 对象在您的 fragment 到 Activity 的移除/添加过程中重复使用。

关于android - 是否可以将 MapView 与 FragmentManager 和 ListFragment 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7918434/

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