摘要:
1 private void sendSMS(String num,String smsBody) { 2 String phoneNum = "smsto:" + num;3 Uri smsToUri = Uri.parse(phoneNum); 4 ... 阅读全文
摘要:
1 public static void share(Context context, String text) {2 Intent intent = new Intent(Intent.ACTION_SEND);3 intent.setType("text/... 阅读全文