GBoard вставка изображений не работает на устройствах до Oreo с androidx - PullRequest
0 голосов
/ 03 мая 2019

Я следовал этим рекомендациям для поддержки вставки изображения клавиатуры в мое приложение, что довольно просто:

val editText = object : EditText(this) {

override fun onCreateInputConnection(editorInfo: EditorInfo): InputConnection {
    val ic: InputConnection = super.onCreateInputConnection(editorInfo)
    EditorInfoCompat.setContentMimeTypes(editorInfo, arrayOf("image/png"))

    val callback =
            InputConnectionCompat.OnCommitContentListener { inputContentInfo, flags, opts ->
                val lacksPermission = (flags and
                        InputConnectionCompat.INPUT_CONTENT_GRANT_READ_URI_PERMISSION) != 0
                // read and display inputContentInfo asynchronously
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1 && lacksPermission) {
                    try {
                        inputContentInfo.requestPermission()
                    } catch (e: Exception) {
                        return@OnCommitContentListener false // return false if failed
                    }
                }

                // read and display inputContentInfo asynchronously.
                // call inputContentInfo.releasePermission() as needed.

                true  // return true if succeeded
            }
    return InputConnectionCompat.createWrapper(ic, editorInfo, callback)
}
}

Но это работает только на устройствах Oreo +. В ходе расследования я обнаружил, что собственное примерное приложение Google перестает работать на pre Oreo, если вы перенесете это приложение в библиотеку androidx из классической библиотеки приложений. Есть ли известная проблема с androidx по этому поводу? Что еще я могу сделать для поддержки вставки изображений на устройствах до Oreo?

Вот что напечатано в журналах:

W/ImageInsertUtil: Mime Type [image/png] is not acceptable when inserting the image
W/ImageInsertUtil: User tried to insert image in an app that does not support mimeType image/png.
W/ImageInsertUtil: Mime Type [image/gif] is not acceptable when inserting the image
W/ImageInsertUtil: User tried to insert image in an app that does not support image insertion for fallback mimetype image/gif.
W/ImageInsertUtil: Share intent [Intent { act=android.intent.action.SEND typ=image/png flg=0x10000001 pkg=com.xyz (has extras) }] failed to resolve in app [com.xyz]

GBoard возвращается к отправке намерения этому приложению с действием SEND, если ему не удается вставить изображение. Это то, что здесь происходит.

...