我可以在网络视图中打开相机吗?
我可以在webview中打开android相机吗?
Can I open android camera in webview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以在webview中打开android相机吗?
Can I open android camera in webview?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用 Webview 时拥有相机功能的最简单方法是使用 Intent。
如果您使用 API,则必须自己构建大量 UI。这是好是坏取决于您需要在应用程序中执行什么操作以及您需要对“拍照过程”进行多少控制。如果您只需要一种快速拍摄照片并在应用程序中使用它的方法,那么 Intent 就是您的最佳选择。
意图示例:
我从另一个答案中借用了此示例的部分内容来最初构建此示例。但我已经没有网址了。
在我现在编写的应用程序中,我将此图像转换为 Base64,然后将其传递给 Javascript,然后将其发布到我的服务器。但是,这可能比您需要知道的更多。 :)
这里是制作它的链接在 webView 上工作
The easiest way to have the camera functionality when using a Webview would be the use an Intent.
If you use the API you have to build a lot of the UI yourself. This is good or bad depending on what you need to do in your application and how much control you need over the "picture taking process". If you just need a quick way to snap a photo and use it in your application, Intent is the way to go.
Intent Example:
I borrowed parts of this example from another answer to build this originally. But I don't have the URL anymore.
In the app I am writing now, I convert this image to Base64 and then pass it to Javascript which then posts it to my server. But, that's probably more than you needed to know. :)
here is the link to make it work on webView
据我所知,这并不是直接内置于 Android API 中的。但是,您可以使用 PhoneGap,它提供了与本机设备功能(即相机)的 Javascript 挂钩。
您可以在此处查看支持的功能列表,并阅读其相机 API 文档此处。
As far as I know this isn't built into the Android API directly. However, you can use PhoneGap, which provides Javascript hooks into native device functionality (i.e., the camera).
You can view a list of supported features here, and read their Camera API documentation here.