如何为 Android 游戏绘制可滚动背景
我想绘制一个在某些级别可能比屏幕大的图像作为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
ImageView
并放置它在ScrollView
中 - 我怀疑但这不是你想要的。如果没有,您将不得不自己动手 - 看看 GestureDetector 提供有关快速手势的帮助。You could use a
ImageView
and put it in aScrollView
- 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.