17

我想在 Maps V2 片段中的标记上显示 InfoWindow。问题是,我想显示使用Universal Image Downloader从 Web 动态加载的位图。

这是我的 InfoWindowAdapter:

class MyInfoWindowAdapter implements InfoWindowAdapter {

    private final View v;

    MyInfoWindowAdapter() {
        v = getLayoutInflater().inflate(R.layout.infowindow_map,
                null);
    }

    @Override
    public View getInfoContents(Marker marker) {



        Item i = items.get(marker.getId());

        TextView tv1 = (TextView) v.findViewById(R.id.textView1);
        ImageView iv = (ImageView) v.findViewById(R.id.imageView1);
        tv1.setText(i.getTitle());


        DisplayImageOptions options = new DisplayImageOptions.Builder()
                .delayBeforeLoading(5000).build();

        imageLoader.getMemoryCache(); 

        imageLoader.displayImage(i.getThumbnailUrl(), iv, options,
                new ImageLoadingListener() {

                    @Override
                    public void onLoadingStarted(String imageUri, View view) {
                        // TODO Auto-generated method stub

                    }

                    @Override
                    public void onLoadingFailed(String imageUri, View view,
                            FailReason failReason) {
                        // TODO Auto-generated method stub

                    }

                    @Override
                    public void onLoadingComplete(String imageUri,
                            View view, Bitmap loadedImage) {
                        Log.d("MAP", "Image loaded " + imageUri);

                    }

                    @Override
                    public void onLoadingCancelled(String imageUri,
                            View view) {
                        // TODO Auto-generated method stub

                    }
    });

        return v;
    }

    @Override
    public View getInfoWindow(Marker marker) {
        // TODO Auto-generated method stub
        return null;
    }

}

我有两个问题:

正如我们所知道InfoWindow那样,它被绘制并且后来对它的更改(在我的情况下是新BitMapImageView)没有显示/InfoWindow没有被更新。完成后如何“通知”InfoWindow 重新加载自身imageLoader?当我把

marker.showInfoWindow()

进入onLoadingComplete它创建了一个无限循环,标记将弹出,开始加载图像,弹出自身等。

我的第二个问题是,在慢速网络连接上(模拟代码中的 5000 毫秒延迟),无论该图像是否属于该/ , ImageViewin将始终显示最后加载的图像。InfoWindowImageWindowMarker

关于如何正确实施这一点的任何建议?

4

4 回答 4

31

当您收到模型更新时,您应该在Marker.showInfoWindow()当前显示信息窗口的标记上进行操作。

所以你需要做3件事:

  1. 创建模型而不是将所有下载放入InfoWindowAdapter
  2. 保存对 Marker的引用(调用它markerShowingInfoWindow
    getInfoContents(Marker marker)
  3. 当模型通知您下载完成时调用
if (markerShowingInfoWindow != null && markerShowingInfoWindow.isInfoWindowShown()) {
    markerShowingInfoWindow.showInfoWindow();
}
于 2013-03-20T00:16:43.393 回答
5

我做了类似的事情。这仍然给了我经济衰退的错误

if (markerShowingInfoWindow != null && markerShowingInfoWindow.isShowingInfoWindow()) {
    markerShowingInfoWindow.showInfoWindow();
}

所以我所做的只是关闭窗口并再次打开它

if (markerShowingInfoWindow != null && markerShowingInfoWindow.isShowingInfoWindow()) {

    markerShowingInfoWindow.hideInfoWindow();
    markerShowingInfoWindow.showInfoWindow();

}

对于相同答案的更详细的版本,这里是我原来的灵魂链接

于 2014-03-27T14:16:39.747 回答
1

我也面临同样的情况并使用以下代码解决。

在我的适配器中,我添加了公共变量

public class MarkerInfoWindowAdapter implements GoogleMap.InfoWindowAdapter {

    public String ShopName="";   

    -------
    -------

     @Override
    public View getInfoWindow(Marker arg0) {

         View v;
         v = mInflater.inflate(R.layout.info_window, null);

         TextView shop= (TextView) v.findViewById(R.id.tv_shop);

         shop.setText(ShopName);


    }
}

并在我的主要活动中添加了 MarkerClickListener

----

MarkerInfoWindowAdapter mMarkerInfoWindowAdapter;

----
----

@Override
public void onMapReady(GoogleMap googleMap) {


    mMarkerInfoWindowAdapter = new MarkerInfoWindowAdapter(getApplicationContext());



    mMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {

        @Override
        public boolean onMarkerClick(final Marker arg0) {

            mMarkerInfoWindowAdapter.ShopName= "my dynamic text";

            arg0.showInfoWindow();

            return true;
        }
    }

    mMap.setInfoWindowAdapter(mMarkerInfoWindowAdapter);


}
于 2015-11-25T07:08:40.620 回答
0

我已经使用了本文中的代码,并且效果很好。

http://androidfreakers.blogspot.de/2013/08/display-custom-info-window-with.html

于 2014-01-20T18:36:32.410 回答