0

不知何故,当我点击添加到地图的图标时,未调用 onTap 事件有人可以告诉我为什么:S?它与我添加到地图中的所有用户叠加在一起,他们都有相同的图标但所有不同的标题。但是当我点击没有任何反应时,如果 Log.d 发生任何事情但没有任何反应,我也尝试记录它。这是代码:

private class MyUsersOverlay extends ItemizedOverlay<OverlayItem> {
    private List<OverlayItem> mOverlays = new ArrayList<OverlayItem>();

    public MyUsersOverlay(Drawable defaultMarker) {
        super(boundCenterBottom(defaultMarker));
    }

    @Override
    protected OverlayItem createItem(int i) {
        return mOverlays.get(i);
    }

    @Override
    public int size() {
        return mOverlays.size();
    }


    public void addOverlayItem(int lat, int lon, String title, String... message) {
        GeoPoint point = new GeoPoint(lat, lon);
        OverlayItem overlayItem = new OverlayItem(point, title, null);
        addOverlayItem(overlayItem);
    }

    public void addOverlayItem(OverlayItem overlayItem) {
        mOverlays.add(overlayItem);
        populate();
    }


    @Override
    protected boolean onTap(int index)
    {
        Log.d("Test Message", "It works");
        OverlayItem item = mOverlays.get(index);

        //Do stuff here when you tap, i.e. :
        //AlertDialog.Builder dialog = new AlertDialog.Builder(cMainActivity);
        //dialog.setTitle(item.getTitle());
        //dialog.setMessage(item.getSnippet());
        //dialog.show();

        Toast.makeText(cMainActivity, item.getTitle(),
                Toast.LENGTH_SHORT).show();

        return true;
    }

    @Override
    public void draw(android.graphics.Canvas canvas, MapView mapView, boolean shadow)
    {
        super.draw(canvas, mapView, shadow);

        if (shadow == false)
        {
            //cycle through all overlays
            for (int index = 0; index < mOverlays.size(); index++)
            {
                OverlayItem item = mOverlays.get(index);

                // Converts lat/lng-Point to coordinates on the screen
                GeoPoint point = item.getPoint();
                Point ptScreenCoord = new Point() ;
                mapView.getProjection().toPixels(point, ptScreenCoord);

                //Paint
                Paint paint = new Paint();
                paint.setTextAlign(Paint.Align.CENTER);
                paint.setTextSize(10);
                paint.setARGB(150, 0, 0, 0); // alpha, r, g, b (Black, semi see-through)

                //show text to the right of the icon
                canvas.drawText(item.getTitle(), ptScreenCoord.x, ptScreenCoord.y+10, paint);
            }
        }
    }
4

3 回答 3

0

如果您想单击叠加层并且有用于单击一般地图视图的事件,这可能是一个问题。如果这是您想要达到的目标,请查看本教程。即使您遇到不同的问题,本教程也可能会帮助您解决问题。

于 2012-11-12T10:53:45.797 回答
0

你记得mapView.setClickable(true);输入你的oncreate()方法吗?

于 2012-11-12T10:49:43.603 回答
0

问题不在上面的代码中,而在其他地方。您有另一个视图touch从您的“ItemizedOverlay”中窃取事件。

Possibilities

  • 您可能dispatchTouchEvent()在您的地图活动中玩耍并一直返回true,通知事件已被使用并且不应发生进一步的调度。
  • 在您定义的布局中MapView,您可能已经添加了一个视图,MapView该视图部分覆盖了它。从最后添加的视图开始调度运动事件。
  • 您可能添加了另一个MapView覆盖ItemizedOverlay.
于 2012-11-12T11:52:20.897 回答