Skip to content Skip to sidebar Skip to footer

How To Open Sms Intent To Read (not Send) Message?

I am using android.provider.Telephony.SMS_RECEIVED to listen to incoming SMS. I was successful catch SMS body and SMS number from the sender. I want to open the SMS application wit

Solution 1:

How can I do it in Android 5.0?

ACTION_VIEW does not take extras. It does take a Uri. If you have read access to the Sms provider, you are welcome to try to find the message in the inbox, then try ACTION_VIEW with the Uri to that message. However, there is no requirement that any Android device have an app with an activity that supports this.

Post a Comment for "How To Open Sms Intent To Read (not Send) Message?"