我正在使用这个精彩的库在我的Android应用程序中处理Map。我正在创建一个名为MapView的自定义视图,它扩展了SubsamplingScaleImageView。我正在尝试使用库的基本PinView扩展来在地图上设置Pin但我不想要静态Pin图像而是dinamic gif。我已经阅读了使用“电影”的3个场景,使用GifDecoder和使用WebView,但它们都没有为我工作。我真的无法弄清楚如何在地图中动画我的Pin。请帮帮我!
public class MapView extends SubsamplingScaleImageView{
private PointF sPin;
private Bitmap pin;
public MapView(Context context) {
this(context, null);
}
public MapView(Context context, AttributeSet attr) {
super(context, attr);
initialise();
}
private void initialise() {
float density = getResources().getDisplayMetrics().densityDpi;
pin = BitmapFactory.decodeResource(this.getResources(), R.drawable.pushpin_blue.gif); //<<<<<<<Here goes the GIF
float w = (density/420f) * pin.getWidth();
float h = (density/420f) * pin.getHeight();
pin = Bitmap.createScaledBitmap(pin, (int)w, (int)h, true);
}
public PointF getPin() {
return sPin;
}
public void setPin(PointF sPin) {
this.sPin = sPin;
initialise();
invalidate();
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (!isReady()) {
return;
}
if (sPin != null && pin != null) {
Paint paint = new Paint();
paint.setAntiAlias(true);
PointF vPin = sourceToViewCoord(sPin);
float vX = vPin.x - (pin.getWidth()/2);
float vY = vPin.y - pin.getHeight();
canvas.drawBitmap(pin, vX, vY, paint);
}
}
}