gpt4 book ai didi

android - 通过 React native 应用程序打开和发送消息

转载 作者:行者123 更新时间:2023-11-29 19:16:29 25 4
gpt4 key购买 nike

我需要从我的 React native 应用打开 native SMS 应用。打开后,用户会发现文本和数字已经设置好并准备就绪。我找到了这个 https://www.npmjs.com/package/react-native-sms但它只适用于 android,我需要它也适用于 iOS。请帮忙

最佳答案

这在 iOS 上是不可能的。 ( See reference .)

要打开另一个应用程序,请使用 Linking API .

你可以在 Android 上做你想做的事,在 iOS 上至少打开短信应用程序,其中包含为所选收件人准备的空白文本。

从 'react-native' 导入 {Linking, Platform}

const url = (Platform.OS === 'android')
? 'sms:1-408-555-1212?body=yourMessage'
: 'sms:1-408-555-1212'

Linking.canOpenURL(url).then(supported => {
if (!supported) {
console.log('Unsupported url: ' + url)
} else {
return Linking.openURL(url)
}
}).catch(err => console.error('An error occurred', err))

关于android - 通过 React native 应用程序打开和发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43370007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com