gpt4 book ai didi

c# - SmsManager.SendTextMessage 抛出异常

转载 作者:行者123 更新时间:2023-11-30 02:04:04 25 4
gpt4 key购买 nike

我正在使用 VS 2015,并从我的 nexus 4 设备进行调试。为什么此行抛出异常(与任何电话号码相同的结果 - 包括实数)? (未显示详细信息)。

SmsManager.Default.SendTextMessage("123456789", null, "bbbbb", null, null);

最佳答案

我找到了一个使用 SmsManager 的示例 here :

SmsManager sms = SmsManager.getDefault();
PendingIntent sentPI;
String SENT = "SMS_SENT";

sentPI = PendingIntent.getBroadcast(this, 0,new Intent(SENT), 0);

sms.sendTextMessage(phoneNumber, null, message, sentPI, null);

来自评论:

sendTextMessage() method sends the SMS message with a PendingIntent.PendingIntent object is used to identify a target to invoke at a later time. We can monitor the status of the SMS message sending process this way.

需要以下权限:

<uses-permission android:name="android.permission.SEND_SMS" />

关于c# - SmsManager.SendTextMessage 抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31005218/

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