画某事。就像 CameraPreview (SurfaceView) 中的矩形一样
例如,如何在 CameraPreview (SurfaceView) 内绘制矩形? 在 setPreviewCallback 中,我实现了应调用 onDraw 方法的 invalidate 方法。但什么也没发生。 有人可以帮忙吗?
How can I draw for example a rectangle inside a CameraPreview (SurfaceView)?
In setPreviewCallback I've implement the invalidate method which should call the onDraw method. But nothing happened.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试回答我自己的问题。
我创建了一个扩展类 View 的新类。在其中我实现了canvas对象的部分和onDraw方法。之后,我根据新类的类型在主活动中创建了一个对象。使用方法 addContentView(View v, LayoutParam...) 我添加了新视图。
就是这样。新创建的 View 现在将绘制在 SurfaceView 上。
希望这能帮助其他有同样问题的人。
I will try to answer my own question.
I've created a new class which extends the class View. In it I implemented the part of canvas object and the onDraw method. After this, I created an Object in the main Activity from the Type of the new class. With the method addContentView(View v, LayoutParam...) i have added the new View.
That was it. The new created View will be drawn over the SurfaceView now.
Hope this will help other people, who have the same problem.