6

我开始研究在 InfoWindow 内显示位置图像的 InfoWindowAdapter。我有很多不同的位置,因此有可能手机上没有位置图像,而是从网上下载的。

现在 Maps API 声明如下:

请注意,将拍摄返回视图的快照,然后在地图上呈现,因此对视图的后续更改不会反映在地图上的信息窗口中。要更新信息窗口(例如,在加载图像后),只需调用 showInfoWindow() 即可更新视图。

据我了解,我需要跟踪创建要更新的信息窗口的标记,并在加载图像后调用 showInfoWindow。我有一个 ImageDownloadService ,它将接受一个处理程序,如果图像完成加载,则通知该处理程序。

如果图像加载时间稍长,则用户可能打开了另一个 InfoWindow 或关闭了当前滚动的窗口。问题是,当我再次在标记上调用 showInfoWindow 以更新视图时,我无法确定 InfoWindow 是否仍然显示。

只有当它仍然显示时,有没有办法更新信息窗口?

4

2 回答 2

6

我刚刚在AsyncTask下载和更新时遇到了类似的问题,InfoWindow今天早上我把头撞在墙上后,我想出了这个小解决方法,希望能满足您的需求,直到谷歌解决这个问题。

我正在调用mymarker.showInfoWindow()的方法,该方法重新调用了这些方法,这些方法最终进入一个循环并且从未正确传播我的更改。OnPostExecute()AsyncTaskInfoWindowAdapter

我使用的解决方案是存储当前选择的标记和InfoWindow我想要显示的视图。我已经在下面的示例中进行了TextView更新DownloadBubbleInfo AsyncTask(我相信类似于您的图像线程)。

            // Setting a custom info window adapter for the google map
        gMap.setInfoWindowAdapter(new InfoWindowAdapter() {

            // Use default InfoWindow frame
            public View getInfoWindow(Marker arg0) {
                return null;
            }

            // Defines the contents of the InfoWindow
            public View getInfoContents(Marker arg0) {
                if (selectedMarker.isInfoWindowShown()) {
                    return infoWindowView;
                } else {
                    // Getting view from the layout file info_window_layout
                    infoWindowView = getLayoutInflater().inflate(
                            R.layout.bubblewindowlayout, null);
                    // Stash the base view in infoWindowView
                    // Getting reference to the TextView to set latitude
                    TextView tvTit = (TextView) infoWindowView
                            .findViewById(R.id.tv_title);
                    tvTit.setText("Fetching data...");

                    // Async the update so we're not slowed down waiting for
                    // the
                    // bubble to populate
                    new DownloadBubbleInfo(context, infoWindowView, arg0)
                            .execute(arg0.getTitle(), arg0.getSnippet());

                    // Returning the view containing InfoWindow contents
                    return infoWindowView;
                }
            }
        });
        gMap.setOnMarkerClickListener(new OnMarkerClickListener() {

            public boolean onMarkerClick(Marker marker) {
                // When a marker is clicked set it as the selected marker so
                // we can track it for the InfoWindow adapter. This will
                // make sure that the correct marker is still displayed when
                // the callback from DownloadBubbleInfo is made to
                // marker.showInfoWindow() which is needed to update the
                // InfoWindow view.
                selectedMarker = marker;
                infoWindowView = null;
                return false;
            }
        });

以及来自的相关行DownloadBubbleInfo AsyncTask

    @Override
protected String[] doInBackground(String... queryparts) {
    // Do the query and stash the results in queryResults and pass to
    // onPostExecute to attach to the mainview (the current view from the
    // main code) and then call showInfoWindow on the marker to re-launch
    // the InfoWindowAdapter methods again to repopulate the InfoWindow view
    // and attach it.
    return queryResults;
}
protected void onPostExecute(String[] results) {
    ((TextView) mainview.findViewById(R.id.tv_title)).setText(results[0]);
    ((TextView) mainview.findViewById(R.id.tv_info)).setText(results[1]);

    marker.showInfoWindow();
    Log.i("Chris-Debug", "Reshowing InfoWindow");
}

现在,所有这些都应该确保正确的标记填充了从您返回的正确信息AsyncTask,嘿,很快就成功绕过了极其尴尬的 GoogleMaps v2 for Android API 的另一个角落!

于 2013-04-15T10:50:29.057 回答
3

Marker 的布尔 isInfoWindowShown() 方法可能是您正在寻找的吗?

Marker#isInfoWindowShown() - Google Maps Android API v2 文档

当 InfoWindow 被滚动离开时它无济于事,不过,为此,我认为,您可能必须将 Marker 的 LatLng 坐标转换为屏幕坐标或使用它来检查标记是否仍在屏幕上:

如何在适用于 Android 的 Google Map V2 中获取纬度/经度跨度

我不确定是否可以检查窗口本身是否仍在地图视图范围内。

于 2012-12-06T17:01:04.173 回答