如何为 Android 游戏绘制可滚动背景

发布于 2024-08-04 17:54:02 字数 268 浏览 5 评论 0原文

我想绘制一个在某些级别可能比屏幕大的图像作为 Android 游戏的背景。我希望用户能够使用手指在触摸屏上滚动图像。

这是我绘制背景的方法:

Bitmap scratch =  BitmapFactory.decodeResource(getResources(),R.drawable.background);
canvas.drawColor(Color.BLACK);
canvas.drawBitmap(scratch, 0, 0, null);

I want to draw an image that on some levels may be larger than the screen as the background for a Android game. I want the user to be able to scroll the image using their finger on the touch screen.

Here is how I am drawing the background:

Bitmap scratch =  BitmapFactory.decodeResource(getResources(),R.drawable.background);
canvas.drawColor(Color.BLACK);
canvas.drawBitmap(scratch, 0, 0, null);

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

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

发布评论

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

评论(1

蘑菇王子 2024-08-11 17:54:02

您可以使用 ImageView 并放置它在 ScrollView 中 - 我怀疑但这不是你想要的。如果没有,您将不得不自己动手 - 看看 GestureDetector 提供有关快速手势的帮助。

You could use a ImageView and put it in a ScrollView - I suspect this is not what you want though. If not, you're going to have to roll your own - take a look at the GestureDetector for help with fling gestures.

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