Questions tagged «sms»

短消息服务(SMS)是电话,Web或移动通信系统的标准化文本通信服务组件,允许在固定线路或移动电话设备之间交换短文本消息。

11
通过意图发送短信
我想通过意图发送短信,但是当我使用此代码时,它会将我重定向到错误的联系人: Intent intentt = new Intent(Intent.ACTION_VIEW); intentt.setData(Uri.parse("sms:")); intentt.setType("vnd.android-dir/mms-sms"); intentt.putExtra(Intent.EXTRA_TEXT, ""); intentt.putExtra("address", phone number); context.startActivity(intentt); 为什么? 另外,我知道一种跟踪短信发送的方法,但是我不知道该如何编码: Starting activity: Intent { act=android.intent.action.SENDTO dat=smsto:%2B**XXXXXXXXXXXX** flg=0x14000000 cmp=com.android.mms/.ui.ComposeMessageActivity } 其中XXXXXXXXXXXX是电话号码。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.