标签:android app andorid拨号 android短信
Android APP拨打电话:
Intent intent=new Intent(Intent.ACTION_DIAL,Uri.parse("tel:"+888888));
startActivity(intent);
}
Android APP短信分享:
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "#短信分享#");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
标签:android app andorid拨号 android短信
原文地址:http://blog.csdn.net/a704755096/article/details/46348013