0

ピンを追加するマップビューがあります。

CustomPinPoint クラスは次のとおりです。

   public class CustomPinpoint extends ItemizedOverlay<OverlayItem>{


private ArrayList<OverlayItem> pinpoints = new ArrayList<OverlayItem>();
private Context c;


public CustomPinpoint(Drawable defaultMarker) {
    super(boundCenter(defaultMarker));
    // TODO Auto-generated constructor stub
}
public CustomPinpoint(Drawable m, Context context) {
    // TODO Auto-generated constructor stub
    this(m);
    c = context;
}

@Override
protected OverlayItem createItem(int i) {
    // TODO Auto-generated method stub
    return pinpoints.get(i);
}

@Override
public int size() {
    // TODO Auto-generated method stub
    return pinpoints.size();
}

public void insertPinpoint(OverlayItem item){
    pinpoints.add(item);
    this.populate();
}
  }

これは私がピンを追加する方法です:

   Touchy t = new Touchy();
   overlayList = map.getOverlays();
   overlayList.add(t);
   compass = new MyLocationOverlay(Map.this, map);
   overlayList.add(compass);
   controller = map.getController();
   OverlayItem overlayItem = new OverlayItem(ourLocation, "What's up", "2nd String");
   CustomPinpoint custom = new CustomPinpoint(d, Map.this);
   custom.insertPinpoint(overlayItem);
   overlayList.add(custom); 

すべて問題ありませんが、ピンをタップしたときにバルーン (または別のクラス) を表示する方法がわかりません。すべてのピンの説明を含むデータベースがあるため、ピンをクリックするたびに説明を表示する必要があります。

4

0 に答える 0