查找已弃用的 api 版本?

Find deprecated api version?

我在我的应用程序中使用相机,但 eclipse 将 msg 显示为 "The type Camera is deprecated"。所以我想知道在哪些 api 中弃用了相机?

在 Android 文档上搜索:

http://developer.android.com/reference/android/hardware/Camera.html

This class was deprecated in API level 21. We recommend using the new android.hardware.camera2 API for new applications.

摄像头 api 从 API 21 开始被弃用。这意味着对于设备 运行 直到 KitKat 4.4 (API 19) 你可以使用摄像头。对于设备 Lollipop 5.0 及更高版本 (API 21+),您可以改用 Camera2。

https://developer.android.com/reference/android/hardware/camera2/package-summary.html