zendesk / belvedere

An image picker library for Android
Apache License 2.0
145 stars 23 forks source link

Don't Open Keyboard #121

Open colorgold opened 3 years ago

colorgold commented 3 years ago

I was wondering if there is an option to prevent the keyboard from showing up after the image is selected. Below is the code I am using:

imageStream = BelvedereUi.install(this);
imageStream.addListener(this);

BelvedereUi.imageStream(getApplicationContext())
                .withCameraIntent()
                .withDocumentIntent("image/*", false)
                .showPopup(this);

Also, even though I have set the allowMultiple to false, the dialog will not close after the 1 selection.