访问 Samsung Galaxy Tab (Android 2.2) 上的前置摄像头 (FFC)
我正在开发一个 Android 应用程序,需要访问 Android 2.2 (Froyo) 的 Samsung Galaxy Tab 上的前置摄像头。正如我在一些论坛上看到的,官方支持前置摄像头,但仅限于 2.3 版本。我还读到三星开发了一个使用前置摄像头的 API,但我找不到任何相关信息。
我想知道是否有任何方法可以访问三星 Galaxy Tab 2.2 版本中的前置摄像头。
预先感谢,
雨果
I'm working on an Android application that need access to the front-facing camera on Samsung Galaxy Tab, with Android 2.2 (Froyo). As I've read from some forums, there is official support for the front camera, but only for the 2.3 version. I've read also that Samsung developed an API that makes use of the front camera, but I couldn't find anything about it.
I'd like to know if there is any way of accessing the front camera in the 2.2 version in the Samsung Galaxy Tab.
Thanks in advance,
Hugo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑 - 哎呀,这是针对 API 级别 9 的,因此它不适用于 Android 2.2
您可以使用此 API 检查支持的摄像头数量 -
使用上述 api 返回的 id 使用 API 打开该特定摄像头 -
更多信息此处
Edit - Oops this is for API level 9, so it won't work on Android 2.2
You can check for the number of cameras supported by using this API -
Using the id retuned by the above api open that particular camera using the API -
More info here
答案位于 我可以使用三星的前置摄像头拍照吗Galaxy Tab (Android 2.2)? 适合我。我检查 Build.VERSION.SDK_INT 以查看需要进行哪一组调用。
The answer at Can I take a picture using the front camera on Samsung Galaxy Tab (Android 2.2) ? worked for me. I check Build.VERSION.SDK_INT to see which set of calls I need to make.