gpt4 book ai didi

android - 我如何在 ionic 2 中打开应用程序短信 Composer View

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

我如何在 ios 和 android 中打开应用程序短信编辑器 View ,我已经检查了 ionic native 教程我们需要创建自定义 View 来撰写和发送短信。

我已经尝试过 sms:12345678 它仅在 ios 上运行良好,但以新方式打开短信应用程序。在 Android 上它给出错误。

下面的代码可以从应用程序发送短信,但用户需要添加他的号码

import { SMS } from '@ionic-native/sms';

constructor(private sms: SMS) { }


...


// Send a text message using default options
this.sms.send('416123456', 'Hello world!');

最佳答案

为此,您需要 options 对象。 - source

sendSMSfunction(){
var options = {
replaceLineBreaks: false,
android: {
intent: ''
}
}
this.sms.send('416123456', 'Hello world!', options);
}

Set to "INTENT" to send SMS with the native android SMS messaging. Leaving it empty will send the SMS without opening any app. (optional)

关于android - 我如何在 ionic 2 中打开应用程序短信 Composer View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45064897/

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