【HarmonyOS NEXT】短信服务是否提供方法可直接进入短信发送界面

 【关键字】

sms.sendMessage / 短信发送 / 系统

【问题描述】

@ohos.telephony.sms模块中sms.sendMessage是直接无界面发送短信,还是类似与call.makeCall跳转到发短信界面,由用户触发发送操作

【解决方案】

短信服务是直接在应用界面实现发短信的能力。但sms.sendMessage需要调用系统能力发送短信,申请权限,当前权限不开放。可以通过跳转短信应用来完成发送信息的操作。

可以调用元能力startAbility接口指定号码并跳转到发送短信页面,参考以下示例代码:

import common from '@ohos.app.ability.common';
import Want from '@ohos.app.ability.Want';

const MMS_BUNDLE_NAME = "com.ohos.mms";
const MMS_ABILITY_NAME = "com.ohos.mms.MainAbility";
const MMS_ENTITIES = 'entity.system.home';

export class Contact {
contactsName: string;
telephone: number;

constructor(contactsName: string, telephone: number) {
this.contactsName = contactsName;
this.telephone = telephone;
}
}

@Entry
@Component
struct JumpMessage {
private context = getContext(this) as common.UIAbilityContext

startMMSAbilityExplicit() {
// 这里完善联系人和号码
let params: Array<Object> = [new Contact("张三", 13344556677)];

let want: Want = {
bundleName: "com.ohos.mms",
abilityName: "com.ohos.mms.MainAbility",
parameters: {
contactObjects: JSON.stringify(params),
pageFlag: "conversation",
// 这里填写短信内容
content: "我才是测试内容"
}
};
this.context.startAbilityForResult(want).then((data) => {
console.log("Success" + JSON.stringify(data))
}).catch(() => {
console.log("error")
})
}

build() {
Row() {
Column() {
Button('发送短信')
.onClick(() => {
this.startMMSAbilityExplicit();
})
}
.width('100%')
}
.height('100%')
}
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值