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发短信,打电话的主要内容,如果未能解决你的问题,请参考以下文章