-
Notifications
You must be signed in to change notification settings - Fork 4
Audio Pick
Roman Tcaregorodtcev edited this page Mar 30, 2018
·
2 revisions
Allow the user to select a audio files and return it.
OmegaIntentBuilder.from(this)
.pick()
.audio()
.multiply(false)
.createIntentHandler(this)
.startActivityForResult(new ActivityResultCallback() {
@Override
public void onActivityResult(int resultCode, @Nullable Intent data) {
// Handle result
}
});