gpt4 book ai didi

android - ACTION_SEND 用于发送短信

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:46:15 28 4
gpt4 key购买 nike

我想打开 native 应用程序发送短信,但应该已经有电话号码了。我找到了 ACTION_SEND 但是当我调用我的函数时返回错误:

04-26 11:59:15.991: ERROR/AndroidRuntime(20198): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SENDTO (has extras) }

此处显示我的代码:

    private void smsSend(String number) {
Intent intent = new Intent(Intent.ACTION_SENDTO, null);
intent.putExtra(Intent.EXTRA_PHONE_NUMBER, number);
startActivity(intent);
}

我知道这很简单,但我不知道为什么它不起作用,而且我找不到任何有用的信息。

感谢您的任何建议。

最佳答案

为什么,这应该可以正常工作。 http://developer.android.com/reference/android/content/Intent.html#ACTION_SENDTO

查看我的代码:

Uri uri = Uri.parse("smsto:0800000123");   
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "The SMS text");
startActivity(it);

关于android - ACTION_SEND 用于发送短信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5788189/

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