I finally got my app to be able to send text messages (SMS), but the problem now is that i need the messages to show up in the inbox if the user opens the sms app.
Is there any way to add text messages to the inbox?
I'm currently using the following code, could i alter it somehow to make it show up in the inbox?
private void sendSMS(String phoneNumber, String message)
{
PendingIntent pi = PendingIntent.getActivity(ccc, 0, new Intent(), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, pi, null);
}