MapView 中的标记在旋转后消失

发布于 2024-11-25 08:52:29 字数 727 浏览 2 评论 0原文

public Drawable rotateDrawable(int angle)
{
    Bitmap arrowBitmap = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.arrowscalled);

    // Create blank bitmap of equal size
    Bitmap canvasBitmap = arrowBitmap.copy(Bitmap.Config.ARGB_8888, true);
    canvasBitmap.eraseColor(0x00000000);

   // Create canvas
   Canvas canvas = new Canvas(canvasBitmap);

   // Create rotation matrix
   Matrix rotateMatrix = new Matrix();
   rotateMatrix.setRotate(angle, canvas.getWidth()/2, canvas.getHeight()/2);

   // Draw bitmap onto canvas using matrix
   canvas.drawBitmap(arrowBitmap, rotateMatrix, null);

   return new BitmapDrawable(canvasBitmap);
}

每当我调用此标记时,标记就会消失而不是旋转。我做错了什么?

public Drawable rotateDrawable(int angle)
{
    Bitmap arrowBitmap = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.arrowscalled);

    // Create blank bitmap of equal size
    Bitmap canvasBitmap = arrowBitmap.copy(Bitmap.Config.ARGB_8888, true);
    canvasBitmap.eraseColor(0x00000000);

   // Create canvas
   Canvas canvas = new Canvas(canvasBitmap);

   // Create rotation matrix
   Matrix rotateMatrix = new Matrix();
   rotateMatrix.setRotate(angle, canvas.getWidth()/2, canvas.getHeight()/2);

   // Draw bitmap onto canvas using matrix
   canvas.drawBitmap(arrowBitmap, rotateMatrix, null);

   return new BitmapDrawable(canvasBitmap);
}

Whenever I call this the marker dissapears instead of rotating. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

池予 2024-12-02 08:52:29

而不是经历创建新画布和所有使用 Bitmap.createBitmap(位图源, int x、int y、int 宽度、int 高度、矩阵 m、布尔过滤器)。创建旋转矩阵时,使用传递给 createBitmap 函数的宽度和高度的一半。之后创建您的 BitmapDrawable。

Instead of going through the hassle of creating a new Canvas and all that use Bitmap.createBitmap (Bitmap source, int x, int y, int width, int height, Matrix m, boolean filter). When you create your rotation matrix, use half the width and height passed to the createBitmap function. After this create your BitmapDrawable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文