当前,我们正在使用MediaStore
和CursorLoader
来构建文件选择器。
我们正在使用MediaStore.Files.getContentUri("external")
我们注意到MediaStore.MediaColumns.DATA
在Android Q中已被弃用,尽管目前看来它仍然可以运行。
String albumCoverPath = albums.getString(albums.getColumnIndex(MediaStore.MediaColumns.DATA));
// allAlbumCoverPath -> /storage/emulated/0/Download/0.jpg
但是,由于过时的使用,我担心这种情况将来可能会中断。我可以知道MediaStore.MediaColumns.DATA
的替代品吗?