画某事。就像 CameraPreview (SurfaceView) 中的矩形一样

发布于 2024-10-16 21:49:26 字数 123 浏览 2 评论 0原文

例如,如何在 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 技术交流群。

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

发布评论

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

评论(1

亚希 2024-10-23 21:49:26

我会尝试回答我自己的问题。
我创建了一个扩展类 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.

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