Skip to content

Instantly share code, notes, and snippets.

@carsonskjerdal
Last active October 23, 2021 21:34
Show Gist options
  • Save carsonskjerdal/7efed2d248131f96273ca799865e89a2 to your computer and use it in GitHub Desktop.
Save carsonskjerdal/7efed2d248131f96273ca799865e89a2 to your computer and use it in GitHub Desktop.
ActivityResultLauncher implementation
private ActivityResultLauncher<Intent> pickerLauncher = registerForActivityResult(
new ActivityResultContracts.StartActivityForResult(),
new ActivityResultCallback<ActivityResult>() {
@Override
public void onActivityResult(ActivityResult result) {
if (result.getResultCode() == Activity.RESULT_OK) {
//image returned
} else {
//nothing returned
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment