2

我正在制作一个在某个位置设置引脚的应用程序。我希望该位置位于图像的底部中心。我正在使用 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);
4

1 回答 1

4

我不确定这是否可行,现在无法检查,但请尝试:

int dWidth = drawable.getIntrinsicWidth();
int dHeight = drawable.getIntrinsicHeight();
drawable.setBounds(-dWidth / 2, -dHeight, dWidth / 2, 0);
于 2011-09-04T09:27:20.503 回答