如何在运行时单击添加特定位置的视图

时间:2013-09-30 04:46:26

标签: android google-maps

enter image description here

我有一个map-view v2,正如我预期的那样运行。

我已添加标记并通过单击标记获取infoWindow。见上面的图片

我的问题是,点击InfoWindow后,我无法在标记旁边添加视图。

我正在使用setOnInfoWindowClickListener

mMap.setOnInfoWindowClickListener(new OnInfoWindowClickListener() {

        @Override
        public void onInfoWindowClick(Marker marker) {
            int[] location = new int[2];
            getView().getLocationOnScreen(location);
            Log.e(TAG, "location=========="+location[0]+" , "+location[1]);
            final View mView = inflater.inflate(R.layout.map_window, null, false);
        }
    });

我想在markerm的右侧有一个视图或窗口,比如......

enter image description here

0 个答案:

没有答案