Android:通过相机预览透明 WebView
只是一个一般性问题,也许有人有一个想法:是否可以在相机 SurfaceView 上拥有透明的 WebView 并使用 HTML/CSS 来创建覆盖层?
Just a general question and maybe someone has an idea: Is it possible to have a transparent WebView over a Camera SurfaceView and use HTML/CSS for creating the overlay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试过为
WebView
设置透明背景并使用FrameLayout
将其覆盖在SurfaceView
之上?Have you tried, setting transparent background for the
WebView
and overlaying it atopSurfaceView
usingFrameLayout
?将 SurfaceView 和 WebView 添加到框架布局中,然后 mWebview.setBackgroundColor(0x00000000) 对我有用
Add the surfaceview and the webview to a framelayout, then mWebview.setBackgroundColor(0x00000000) works for me