我是Android新手,正在开发一款简单的聊天应用。在我的应用程序中,我必须邀请目前没有使用我的应用程序的朋友。我的查询是如何通过Android中的简单默认消息应用程序从我的应用程序发送应用程序邀请。我不想使用任何已安装的应用程序,例如:facebook,whatsapp,hike,gmail等。 我使用了以下代码:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);
任何帮助将不胜感激。
答案 0 :(得分:1)
如果我找对你,你想发送短信:
Uri uri = Uri.parse("smsto:");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "Here you can set the SMS text to be sent");
startActivity(it);
答案 1 :(得分:0)
因此,您希望将用户导航到手机的默认消息应用程序。
Uri uri = Uri.parse("smsto:0800000123");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "YOUR_PLAY_STORE_URL");
startActivity(it);
或尝试使用SmsManager
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage("phoneNo", null, "sms message", null, null);