问题 I've been updating meta data in the MediaStore through a ContentResolver, but this no longer works with Android Q (API 29). The following code gives me a warning, and the description is not updated: ContentValues values = new ContentValues(); values.put(MediaStore.Images.Media.DESCRIPTION, "Some text"); int res = getContext().getContentResolver().update( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values, MediaStore.Images.Media._ID + "= ?", new String[]{sImageId}); android.process.media W