React Native 中的图像键盘支持
Image keyboard support in React Native
With Android 7.1 (API level 25), the Android SDK includes the Commit Content API, which provides a universal way for IMEs to send images and other rich content directly to a text editor in an app.
但是,当我使用 React Native 的 TextInput 组件和 select 来自 Android 键盘的 GIF 时,我收到以下消息(见屏幕截图):
This text field does not support GIF insertion from the keyboard.
如何向 React Native 应用程序添加对此功能的支持?理想情况下,我想要一个提供回调的组件来处理 commitContent()
.
接收到的 URI
有一个拉取请求添加了 3 个月前的支持。我不清楚为什么此时不合并...
https://github.com/facebook/react-native/pull/26088
With Android 7.1 (API level 25), the Android SDK includes the Commit Content API, which provides a universal way for IMEs to send images and other rich content directly to a text editor in an app.
但是,当我使用 React Native 的 TextInput 组件和 select 来自 Android 键盘的 GIF 时,我收到以下消息(见屏幕截图):
This text field does not support GIF insertion from the keyboard.
如何向 React Native 应用程序添加对此功能的支持?理想情况下,我想要一个提供回调的组件来处理 commitContent()
.
有一个拉取请求添加了 3 个月前的支持。我不清楚为什么此时不合并... https://github.com/facebook/react-native/pull/26088