在调用RegisterForActivityResult方法时,需要使用StartActivityForResult方法,并在OnActivityResult方法中获取返回的结果Uri。
示例代码如下:
//注册ActivityResult回调
ActivityResultLauncher
//启动Activity并获取返回结果Uri Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); mGetContent.launch(intent);