PixelFormat 1.6 已弃用?

发布于 2024-10-17 14:12:51 字数 138 浏览 1 评论 0原文

我在我的 android 1.6 应用程序中使用 Camera.Parameters.setPixelFormat(PixelFormat.JPEG) 。文档说这已被弃用,但常量值与新的 ImageFormat 相同......

我应该不担心吗?

I am using Camera.Parameters.setPixelFormat(PixelFormat.JPEG) in my android 1.6 application. The documentation says this is deprecated, but the constant value is the same as the new ImageFormat...

Should I not worry about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风流物 2024-10-24 14:12:51

通常,当 API 中的某些内容被设置为已弃用时,这意味着它只是为了与旧版本兼容而存在,最终将从 Android 未来版本的 API 中消失。

这意味着您不需要急于修复它,但您应该开始长期担心它,并最终创建一个新的代码部分来使用当前支持的 API 函数执行相同的任务,以便将来当 Android API 版本不再支持已弃用的方法/功能时,您的应用程序已准备好运行并面向新的和即将推出的 Android 平台版本。

Typically, when something in an API is set as deprecated, it means that it is only there for compatibility purposes with old versions, and will eventually disappear from the API for future versions of Android.

This means that you don't need to rush to fix it, but you should start worrying about it long-term, and eventually create a new portion of code to do the same task using the current supported API functions, so that when a future version of Android API arrives that does not support the deprecated methods/functions anymore, your application is already ready to work and target new and upcoming versions of the Android platform.

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