Android如何实现调用短信功能

来源:爱站网时间:2020-07-29编辑:网友分享
手机在我们的生活中是必不可少的,而我们开发人员需要在操作系统的平台上做好发送短信的功能,才能直接调用Android接口,希望通过爱站技术频道介绍的Android如何实现调用短信功能,对大家都有所帮助。

手机在我们的生活中是必不可少的,而我们开发人员需要在操作系统的平台上做好发送短信的功能,才能直接调用Android接口,希望通过爱站技术频道介绍的Android如何实现调用短信功能,对大家都有所帮助。

Android 调用发送短信的方法

功能:调用发送短信功能

1 、 权限

2、具体实现

Uri smstoUri = Uri.parse("smsto:"); 
Intent intent = new Intent(Intent.ACTION_VIEW,smstoUri); 
intent.putExtra("address","电话号码"); // 没有电话号码的话为默认的,即显示的时候是为空的 
intent.putExtra("sms_body","短信内容"); // 设置发送的内容 
intent.setType("vnd.android-dir/mms-sms"); 
startActivity(intent); 

Activity 代码:

public class MainActivity extends Activity { 
 
  private EditText phone ,message; 
  private Button sendbtn; 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
     
    phone = (EditText) findViewById(R.id.phone); 
    message = (EditText) findViewById(R.id.message); 
    sendbtn = (Button) findViewById(R.id.sendbtn); 
     
    //点击发送短信 
    sendbtn.setOnClickListener(new OnClickListener() { 
       
      public void onClick(View v) { 
        String p = phone.getText().toString(); 
        String m = message.getText().toString(); 
        Uri smstoUri = Uri.parse("smsto:"); // 解析地址 
        Intent intent = new Intent(Intent.ACTION_VIEW,smstoUri); 
        intent.putExtra("address",p); // 没有电话号码的话为默认的,即显示的时候是为空的 
        intent.putExtra("sms_body",m); // 设置发送的内容 
        intent.setType("vnd.android-dir/mms-sms"); 
        startActivity(intent); 
      } 
    }); 
  } 
} 

 Mainfest.xml 配置文件:

布局示意图:



 
 
  

上面就是爱站技术频道小编为大家介绍的Android如何实现调用短信功能,有任何的疑问欢迎大家和小编一起探讨,一起学习。

上一篇:Android开发中实现活动与碎片数据传输的两种方式

下一篇:Android开发中修改MTU的步骤详解

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载