相逢意气为君饮,系马高楼垂柳边。这篇文章主要讲述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发短信,打电话】
推荐阅读
- appium+Android studio安装与配置
- @RequestMapping与@ModelAttribute 套路
- Androidjava.lang.RuntimeException: java.lang.Throwable: A WebView method was called on thread '
- Android实现多语言so easy
- AndroidActivity生命周期研究
- MyApp
- 浅析$watch ,$apply 和 $digest (Angular篇)
- 我的Android手册
- 安卓初次完美调试,并成功编程!