Android:自定义视图缩放/捏合
我有一个使用 onDraw 开发的运行图形库,使用 canvas.drawLine 方法绘制图形。在 onTouch 中我实现了滚动功能。
现在我的客户想要缩放/捏合。是否可以在此类视图上执行缩放/捏合操作而无需重绘这些操作?
实现这一点的最佳方法是什么?
现在接下来.. 我怎样才能显示缩放指示器? 我有一些如何设法显示缩放比例(scaleFactor * 100)。如何显示缩放指示器?我可以使用 canvas.drawBitmap 显示静态图像。但还有更好的办法吗?
任何帮助表示赞赏
I've a running graph library developed with onDraw plotting the graph using canvas.drawLine methods. In onTouch I've implemented scroll functionality.
Now my customer wants Zoom/Pinch. Is it possible to perform zoom/pinch on such a view without redrawing for these operations?
What is the best way to implement this?
Now next..
How can I display Zooming indicators for this??
I've some how managed to display scale of zoom (scaleFactor * 100). How will I show a zooming indicator? I can display static images using canvas.drawBitmap. But is there a more better way?
Any help is appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向图表添加捏合缩放功能:
如何实现捏合缩放参考:android 捏合缩放
Add a pinch zoom capability to the graph:
How to implement pinch zoom refer : android pinch zoom