ClassCastException:MediaMetadataRetriever 无法转换为 AutoCloseable

use*_*924 2 android kotlin android-6.0-marshmallow android-6.0.1-marshmallow

MediaMetadataRetriever我尝试与 Kotlin 一起使用use

MediaMetadataRetriever().apply {
    setDataSource(context, uri)
}.use {
    ...
}
Run Code Online (Sandbox Code Playgroud)

但它在 Android 6 Marshmallow (23 API) 上给了我一个错误:

java.lang.ClassCastException:android.media.MediaMetadataRetriever 无法转换为 java.lang.AutoCloseable

为什么这样?

Yur*_*nko 7

MediaMetadataRetrieverAutoCloseable 从 API 级别 29 开始实施。