访问 Samsung Galaxy Tab (Android 2.2) 上的前置摄像头 (FFC)

发布于 2024-11-03 18:12:13 字数 230 浏览 4 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(2

裂开嘴轻声笑有多痛 2024-11-10 18:12:13

编辑 - 哎呀,这是针对 API 级别 9 的,因此它不适用于 Android 2.2

您可以使用此 API 检查支持的摄像头数量 -

public static int getNumberOfCameras ()

使用上述 api 返回的 id 使用 API 打开该特定摄像头 -

public static Camera open (int cameraId) 

更多信息此处

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 -

public static int getNumberOfCameras ()

Using the id retuned by the above api open that particular camera using the API -

public static Camera open (int cameraId) 

More info here

提笔落墨 2024-11-10 18:12:13

答案位于 我可以使用三星的前置摄像头拍照吗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.

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