Android使用Intent发送短信的实现方法
程序员文章站
2024-03-03 21:10:04
本文实例讲述了android使用intent发送短信的实现方法。分享给大家供大家参考,具体如下:
在一个activity中使用intent发送短信
packag...
本文实例讲述了android使用intent发送短信的实现方法。分享给大家供大家参考,具体如下:
在一个activity中使用intent发送短信
package com.zhuguangwei; import android.app.activity; import android.content.intent; import android.net.uri; import android.os.bundle; import android.view.view; import android.view.view.onclicklistener; import android.widget.button; public class intentactivity extends activity { private button mybutton; /** called when the activity is first created. */ @override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); mybutton = (button) findviewbyid(r.id.mybutton); mybutton.setonclicklistener(new onclicklistener() { @override public void onclick(view v) { // todo auto-generated method stub // 使用intent发短信 uri uri = uri.parse("smsto:13800000000"); intent intent = new intent(intent.action_sendto,uri); intent.putextra("sms_body", "the sms text"); startactivity(intent); } }); } }
更多关于android相关内容感兴趣的读者可查看本站专题:《android短信与电话操作技巧汇总》、《android文件操作技巧汇总》、《android操作sqlite数据库技巧总结》、《android操作json格式数据技巧总结》、《android数据库操作技巧总结》、《android编程之activity操作技巧总结》、《android编程开发之sd卡操作方法汇总》、《android开发入门与进阶教程》、《android资源操作技巧汇总》、《android视图view技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。
上一篇: php执行多个存储过程的方法【基于thinkPHP】
下一篇: java编写ftp下载工具
推荐阅读
-
Android项目实现短信的发送、接收和对短信进行拦截
-
Android使用Intent发送短信的实现方法
-
Android Activity中使用Intent实现页面跳转与参数传递的方法
-
Android App使用RecyclerView实现上拉和下拉刷新的方法
-
Android实现双模(CDMA/GSM)手机短信监听的方法
-
Android使用SharedPreferences存储数据的实现方法
-
详解Android短信的发送和广播接收实现短信的监听
-
在Android中通过Intent使用Bundle传递对象的使用方法
-
详解Android中通过Intent类实现组件间调用的方法
-
Android中使用socket使底层和framework通信的实现方法