打電話
String action = Intent.ACTION_DIAL;
Intent intent = new Intent(action);
intent.setData(Uri.parse("tel:" + number));
this.startActivity(intent);
發(fā)短信
//啟動發(fā)短信
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setData(Uri.parse("smsto:" + number));
intent.putExtra("sms_body","");
context.startActivity(intent);
break;