Skip to content

Contact Pick

Roman Tcaregorodtcev edited this page Mar 30, 2018 · 1 revision

Allow the user to select a contact and return it.

        OmegaIntentBuilder.from(this)
                .pick()
                .contact()
                .createIntentHandler(this)
                .startActivityForResult(new ActivityResultCallback() {
                    @Override
                    public void onActivityResult(int resultCode, @Nullable Intent data) {
                        // Handle result
                    }
                });