打开短信并在其中放置一个随机数组

发布于 2024-11-06 08:24:38 字数 113 浏览 1 评论 0原文

基本上,当从数组中按下时,我的应用程序会随机生成一个字符串。我想知道是否有任何方法(如果用户选择它)可以让生成的字符串(按下按钮时)打开他们的短信并将字符串放入其中。那么他们所要做的就是将其发送给他们选择的人吗?

Basically my app randomly generates a string when pressed from out of an array. I was wondering is there any way that (if the user selects it) that i can have that string that is generated (when the button is pressed) open their text messaging and place the string in it. So that all they have to do is send it to whom they choose?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-11-13 08:24:38

你会使用这样的东西:

                Intent sendIntent = new Intent(Intent.ACTION_VIEW);
                sendIntent.putExtra("sms_body", "Content of the SMS goes here..."); 
                sendIntent.setType("vnd.android-dir/mms-sms");
                startActivity(sendIntent);

You would use something like this:

                Intent sendIntent = new Intent(Intent.ACTION_VIEW);
                sendIntent.putExtra("sms_body", "Content of the SMS goes here..."); 
                sendIntent.setType("vnd.android-dir/mms-sms");
                startActivity(sendIntent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文