//Intent在应用程序间传递信息 //发短信功能 Uri uri= Uri.parse("smsto:18601646141"); Intent intent = new Intent(Intent.ACTION_SENDTO,uri); intent.putExtra("sms_body", "sms text"); startActivity(intent);
//显示一个选择dialog框 Intent intent = new Intent(Intent.ACTION_SEND); // Create intent to show the chooser dialog Intent chooser = Intent.createChooser(intent, "chose"); startActivity(chooser);
//拨打电话功能 Uri uri = Uri.parse("tel:18601646141"); Intent intent = new Intent(Intent.ACTION_CALL,uri); startActivity(intent); 注意,需要获取CALL_PHONE权限