标签: android image
我需要从外部应用程序中选择一个图像并在数据库中保存其名称,因为稍后我需要使用getIdentifier()方法获取图像。如何知道从uri收到的其他应用程序的图像名称?
getIdentifier()
编辑:
Intent pickerIntent = new Intent(Intent.ACTION_PICK); pickerIntent.setType("image/*"); startActivityForResult(pickerIntent, SELECT_IMAGE);