我正在尝试检索使用ACTION_GET_CONTENT
意图选择的视频的纬度/经度。我有以下代码:
int data_column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
int lat_column_index = cursor.getColumnIndexOrThrow(MediaStore.Video.Media.LATITUDE);
int long_column_index = cursor.getColumnIndexOrThrow(MediaStore.Video.Media.LONGITUDE);
我在 LATITUTDE/LONGITUDE 列上遇到了这个异常:
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=0, result=-1, data=Intent { dat=content://media/external/video/media/1749 flg=0x1 }} to activity {}: java.lang.IllegalArgumentException: **column 'latitude' does not exist**
我希望从有检索视频/图像的纬度/经度经验的人那里得到任何反馈