特定の場所にピンを設定するアプリを作成しています。位置は画像の中央下にしたいです。setBounds メソッドを使用して境界を作成していますが、「boundCenterBottom」にする方法がわかりません。
drawable = Maps.this.getResources().getDrawable(pincolorstar[ImTracking.pList.get(k).getPosition()]);
// right now the bounds are putting the marker way off target
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
//more stuff
OverlayItem overlayitem = new OverlayItem(myPoint, mList.get(i).getName(), mList.get(i).getTime());
overlayitem.setMarker(drawable);