android发短信,打电话

Posted 新年新气象934060369

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android发短信,打电话相关的知识,希望对你有一定的参考价值。

//1.进入系统短信列表界面

Intent intent = newIntent(Intent.ACTION_MAIN);

intent.addCategory(Intent.CATEGORY_DEFAULT);

intent.setType("vnd.android-dir/mms-sms");

startActivity(intent);


//2》进入短信发送界面

Intent intent = new Intent(Intent.ACTION_VIEW);


intent.putExtra("address", "186...");


intent.putExtra("sms_body", "短信内容");


intent.setType("vnd.android-dir/mms-sms");


startActivity(intent);

 

 

打电话:

 Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+number));    
startActivity(intent);

 


以上是关于android发短信,打电话的主要内容,如果未能解决你的问题,请参考以下文章

delphi xe5 android 开发实现手机打电话和发短信

发短信和打电话

Android双卡打电话和发短信

android 模拟器实现发短信

html页面通过特殊链接:打电话,发短信,发邮件详细教程

iOS开发之调用系统打电话发短信接口以及程序内发短信